TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

R packages I wish I'd known about earlier

104 pointsby glampover 12 years ago

8 comments

cschmidtover 12 years ago
For some reason, I find it harder to find what I'm looking for in the R help than just about any other language. That's why you end up not knowing about useful packages for a very long time. Is that just me?
评论 #5205201 未加载
评论 #5205946 未加载
评论 #5205015 未加载
hablahahaover 12 years ago
This article should really just be called "Everyone should just follow Hadley's Github". Actually, someone should write that.
EzGraphsover 12 years ago
If you want to do any sort of stock analysis, quantmod is really great as it bundles a number of other related packages with financial application together: <a href="http://www.quantmod.com/" rel="nofollow">http://www.quantmod.com/</a>.<p>If you have to deal with directed graphs, iGraph <a href="http://igraph.sourceforge.net/" rel="nofollow">http://igraph.sourceforge.net/</a>.<p><i>Related Blog Posts</i><p><a href="http://www.r-chart.com/2010/06/stock-analysis-using-r.html" rel="nofollow">http://www.r-chart.com/2010/06/stock-analysis-using-r.html</a><p><a href="http://www.r-chart.com/2010/06/analyze-twitter-data-using-r.html" rel="nofollow">http://www.r-chart.com/2010/06/analyze-twitter-data-using-r....</a>
dragsover 12 years ago
ddply can be very slow. Strongly recommended to get your data into the form you want in something map-reduce-y _then_ throw it into R for analysis and graphing.
评论 #5205326 未加载
评论 #5206680 未加载
santa_boyover 12 years ago
data.table deserves a mention here too. It simplifies and speeds up dataframe operations<p>see ?data.table
评论 #5205861 未加载
felixrover 12 years ago
Caret (<a href="http://caret.r-forge.r-project.org/" rel="nofollow">http://caret.r-forge.r-project.org/</a>) is another package that should make the list, if you are using machine learning packages in R.<p>Caret gives you a common interface to you use a huge list of classifiers. Plus, it has some nice functions for data preparation.
phillc73over 12 years ago
The list of database connectors should also include RSQLite:<p><a href="http://cran.r-project.org/web/packages/RSQLite/index.html" rel="nofollow">http://cran.r-project.org/web/packages/RSQLite/index.html</a><p>A really useful article though. I'm going to investigate RandomForest.
dansoover 12 years ago
If only all such lists could include example code and visualizations, very nicely done. Thanks!
评论 #5204832 未加载