WordUse - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


EssayTools

  

WordUse

  

find occurrences of individual words in one or more essays

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

WordUse( essays, options )

Parameters

essays

-

set, list, or array of strings

showcount = truefalse

-

(optional) truefalse

mincount = posint

-

(optional) positive integer

maxcount = posint

-

(optional) positive integer

Description

• 

The WordUse command breaks the given essays into unique instances of the words contained therein.  All words are reduced to their lowercase equivalent.

  

When no *count option is specified the order of entries in the returned list is unspecified.

• 

If the option showcount = true is specified then the words are returned in equation form indicating the lowercase word followed by the number of occurrences of that word.  The returned list is sorted in order of most occurrences first.

• 

If the option mincount = N is specified then only the words that occur at least N times are returned. The returned list is sorted in order of most occurrences first.

• 

If the option maxcount = N is specified then only the words that occur no more than N times are returned. The returned list is sorted in order of most occurrences first.

• 

This function is part of the EssayTools package, so it can be used in the short form WordUse(..) only after executing the command with(EssayTools). However, it can always be accessed through the long form of the command by using EssayTools[WordUse](..).

Examples

Example 1

withEssayTools:

Find the unique occurrences of words in a list of essays

EssaysI like to use i and j.,And x and y too.,But I don't like k and z.:

sortWordUseEssays

and,but,don't,i,j,k,like,to,too,use,x,y,z

(1)

Find all words used at least 2 times

WordUseEssays,mincount=2

and,i,like

(2)

Find all words used at least 2 times and show how many times each was used

WordUseEssays,mincount=2,showcount

and=4,i=3,like=2

(3)

Example 2

HemingwayNothing happened. The fish just moved away slowly and the old man could not raise him an inch. His line was strong and made for heavy fish and he held it against his hack until it was so taut that beads of water were jumping from it. Then it began to make a slow hissing sound in the water and he still held it, bracing himself against the thwart and leaning back against the pull. The boat began to move slowly off toward the north-west.:

WordUseHemingway,showcount=true,mincount=3

the=7,it=5,and=5,against=3

(4)

Compatibility

• 

The EssayTools[WordUse] command was introduced in Maple 17.

• 

For more information on Maple 17 changes, see Updates in Maple 17.

See Also

EssayTools

EssayTools[CountUseOfAllWords]

EssayTools[CountUseOfEachWord]

StringTools

StringTools[Words]