Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. wordStem(c("decline", "resumes", "declining"), language = "english")
  2.  
  3. [1] "declin" "resum" "declin"
  4.  
  5. > wordStem(c("win", "winning", "winner", "fine"), language = "english")
  6.  
  7. [1] "win" "win" "winner" "fine"
  8.  
  9. R version 3.1.3 (2015-03-09)
  10. Platform: x86_64-w64-mingw32/x64 (64-bit)
  11. Running under: Windows 8 x64 (build 9200)
  12.  
  13. locale:
  14. [1] LC_COLLATE=English_Singapore.1252 LC_CTYPE=English_Singapore.1252 LC_MONETARY=English_Singapore.1252 LC_NUMERIC=C
  15. [5] LC_TIME=English_Singapore.1252
  16.  
  17. attached base packages:
  18. [1] stats graphics grDevices utils datasets methods base
  19.  
  20. other attached packages:
  21. [1] slam_0.1-32 SnowballC_0.5.1 wordcloud_2.5 RColorBrewer_1.1-2 tm_0.6 NLP_0.1-6
  22.  
  23. loaded via a namespace (and not attached):
  24. [1] parallel_3.1.3 Rcpp_0.11.5 tools_3.1.3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement