freqAnalysis: Functions Frequency Analysis

Description Usage Arguments Value Examples

Description

The function freqAnalysis does a frequency analysis of retained words after initial preprocessing.

Usage

1
freqAnalysis(ds, spvar = 0.99, stemvar = 0)

Arguments

ds

a character vector of text documents

spvar

a sparsity variable which defaults to 0.99

stemvar

a variable indicating stemming to be performed or not which defaults to '0' meaning no stemming

Value

A dataframe with words and their frequencies after listed preprocessing.

Examples

1
2
3
4
5
6
7
## Not run: 
# Run it and see for yourself

## End(Not run)
data.tmp<-read.csv(system.file("ext", "testdata.csv", package="BullsEyeR"))
ds<-as.character(data.tmp$Story[1:2])
freqAnalysis(ds=ds,spvar=0.99,stemvar=0)

BullsEyeR documentation built on May 1, 2019, 6:36 p.m.