search for: tfreq

Displaying 1 result from an estimated 1 matches for "tfreq".

Did you mean: ifreq
2012 Sep 24
5
Memory usage in R grows considerably while calculating word frequencies
...rds") # Sort by frequency, not alphabetically words.txt<-sort(words.txt,decreasing=TRUE) # Put into some readable form, "Name of word" and "Number of times it occurs" words.txt<-paste(names(words.txt),words.txt,sep="\t") # Results to a file cat("Word\tFREQ",words.txt,file="frequencies",sep="\n") -- View this message in context: http://r.789695.n4.nabble.com/Memory-usage-in-R-grows-considerably-while-calculating-word-frequencies-tp4644053.html Sent from the R help mailing list archive at Nabble.com.