Promote your favorite R functions

[This article was first published on Revolutions, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

The 27 base and recommended libraries of the standard R 2.12 distribution together contain 3556 functions (you can check using the code posted after the jump). Many of the functions are commonly used: c, data.frame, rnorm, lm. But some of those functions, while being extremely useful, may be less well known to many R users. Some examples I'd wish I'd learned about earlier include tapply, agrep, and formatC. There are also several really useful help pages that aren't associated with specific functions at all, like Syntax and .Machine, that don't get the exposure they deserve.

To help get some of these “hidden gems” of the R documentation better known, we've added a “Function of the Day” section to the home page of inside-R.org. What R functions and help pages do you wish you'd known about earlier? Add a comment to your favorite pages in the Language Reference explaining why they deserve more love, and we'll consider the comments nominations for the Function of the Day.

inside-R.org: Language Reference

# list of base and recommended packages in R 2.12
base.rec <- c(
 "base","boot","class","cluster","codetools",
 "datasets","foreign","graphics","grDevices",
 "grid","KernSmooth","lattice","MASS",
 "Matrix","methods","mgcv","nlme",
 "nnet","rpart","spatial","splines",
 "stats","stats4","survival","tcltk",
 "tools","utils") 
n.obj <- rep(0, length(base.rec))
names(n.obj) <- base.rec
 
# count objects in each package
for(p in base.rec) {
	require(p,character.only=TRUE)
	n.obj[p] <- length(
	  objects(name=paste("package",p,sep=":")))
	}
 
# total count
sum(base.rec)

To leave a comment for the author, please follow the link and comment on their blog: Revolutions.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)