<?xml version="1.0" encoding="utf-8"?><!DOCTYPE article  PUBLIC '-//OASIS//DTD DocBook XML V4.4//EN'  'http://www.docbook.org/xml/4.4/docbookx.dtd'><article><articleinfo><title>Zeno</title><revhistory><revision><revnumber>2</revnumber><date>2013-08-02 17:40:53</date><authorinitials>RussellThompson</authorinitials></revision></revhistory></articleinfo><para>The Zeno frequency files are in /group/language/zeno </para><para>The file ZenoWordFreqs.txt contains the main word frequency listing from the Zeno norms. The documentation and CD  is in the library. (Filed under Tests as &quot;The Educator's Word Frequency  Guide&quot;). </para><para>NOTE: this is copyrighted. YOU MUST NOT GIVE THIS TO ANYBODY OUTSIDE THE UNIT, OR TAKE A COPY WITH YOU IF YOU LEAVE. </para><para>tip: if you want to pull out words with a particular number of letters and frequency range you can do it with an awk script like this (entered from the unix command line) </para><screen><![CDATA[gawk '{if((length($1) >= 1 && length($1) <= 5) && ($2 >= 2 && $2 <= 50)) print $0}' < ZenoWordFreqs.txt]]></screen><para>this says: give me all the words between 1 and 5 letters long that also have a frequency between 2 &amp; 50. It shouldn't be too much of a challenge to work out how to change the ranges! </para><para>-- Main.<ulink url="https://lsr-wiki-02.mrc-cbu.cam.ac.uk/language/Zeno/language/DennisNorris#">DennisNorris</ulink> - 20 Apr 2006 </para></article>