sacks_of_bags_of_words {klsh}R Documentation

Function to convert all records into a bag of tokens

Description

Function to convert all records into a bag of tokens

Usage

sacks_of_bags_of_words(r.set, k, fieldwise = FALSE)

Arguments

r.set

Record set

k

Parameter k, which is the number of shingle, tokens, or grams to break the string into

fieldwise

Flag where the defalt setting to include the record as the entire string

Value

Computes the bag of tokens for a record set

Examples

data(RLdata500)
data.500 <- RLdata500[-c(2,4)]
sacks_of_bags_of_words(data.500[1:3,c(-2)],k=2)

[Package klsh version 0.1.0 Index]