-
Recent Posts
Recent Comments
Archives
- March 2020
- December 2018
- November 2017
- October 2017
- June 2017
- May 2017
- April 2017
- September 2016
- August 2016
- August 2015
- July 2015
- May 2015
- April 2015
- February 2015
- December 2014
- November 2014
- October 2014
- September 2014
- July 2014
- May 2014
- December 2013
- August 2013
- July 2013
- April 2013
- March 2013
- January 2013
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- May 2011
- April 2011
Categories
Meta
Monthly Archives: November 2011
A nice short article on memory in R
There is a nice short article on memory issue in R at http://www.matthewckeller.com/html/memory.html. If you use R to process large data, you might find it helpful. It introduces: – checking how much memory an object is taking; – the memory … Continue reading
Using Text Mining to Find Out What @RDataMining Tweets are About
This post shows an example on text mining of Twitter data with R packages twitteR, tm and wordcloud. Package twitteR provides access to Twitter data, tm provides functions for text mining, and wordcloud visualizes the result with a word cloud. … Continue reading
Help: stemming and stem completion with package tm in R
I came across a problem below when doing stemming and stem completion with package tm in R. Word “mining” was stemmed to “mine” with stemDocument(), and then completed to “miners”with stemCompletion(). However, I prefer to keep “mining” intact. For stemCompletion(), … Continue reading