vote up 14 vote down star
8

In order to share some more tips and tricks for R, what is you single-most useful feature or trick? Clever vectorization? Data input/output? Visualization and graphics? Statistical analysis? Special functions? The interactive environment itself?

One item per post, and we will see if we get a winner by means of votes.

[Edit 25-Aug 2008]: So after one week, it seems that the simple str() won the poll. As I like to recommend that one myself, it is an easy answer to accept.

flag
4  
Polls like this really should be community wiki. – Thomas Owens Aug 18 at 19:27
2  
@Dirk: "community wiki" means "community-owned", its not a synonym for "poll question". Don't listen to the community wiki police. – Juliet Aug 18 at 19:45
3  
Considering meta.stackoverflow.com/questions/11740/… it should be CW. – dmckee Aug 18 at 21:17
3  
CW bullying again. I'll see your meta-SO and raise you: meta.stackoverflow.com/questions/392/… – ars Aug 19 at 0:41
5  
@ars: its a question that does not have a definite answer. Ergo make it CW. – dmckee Aug 19 at 1:26
show 1 more comment

23 Answers

vote up 9 vote down check

str() tells you the structure of any object.

link|flag
vote up 1 vote down

As a recent R addict, I love the ?function_name and use it all the time

-k

link|flag
@Dirk: Just a side note. You are everywhere :) ! – knguyen Nov 7 at 17:10
That's just a lack of focus :) In Emacs/ESS, ?? and ??? also work but I use them way less. – Dirk Eddelbuettel Nov 7 at 17:39
vote up 0 vote down

R just loves to create factors and then falls down over itself when the factor levels are missing, so my best trick is the following function to eliminate factor levels that do not appear in the data.

drop.levels = function (dat) {
if (is.factor(dat)) 
    dat <- dat[, drop = TRUE]
else dat[] <- lapply(dat, function(x) x[, drop = TRUE])
return(dat) }
link|flag
vote up 1 vote down

My new favorite thing is the foreach library. It lets you do all of the nice apply things, but with a somewhat easier syntax:

list_powers <- foreach(i = 1:100) %do% {
  lp <- x[i]^i
  return (lp)
}

The best part is that if you are doing something that actually requires a significant amount of time, you can switch from %do% to %dopar% (with the appropriate backend library) to instantly parallelize, even across a cluster. Very slick.

link|flag
vote up 2 vote down

Sometimes you need to rbind multiple data frames. do.call() will let you do that (someone had to explain this to me when bind I asked this question, as it doesn't appear to be an obvious use).

foo <- list()

foo[[1]] <- data.frame(a=1:5, b=11:15)
foo[[2]] <- data.frame(a=101:105, b=111:115)
foo[[3]] <- data.frame(a=200:210, b=300:310)

do.call(rbind, foo)
link|flag
Good call: I find that this is often simpler than using unsplit. – Richie Cotton Nov 18 at 16:27
vote up 1 vote down

I'm really surprised no one has posted about apply, tapply, lapply, and sapply. A general rule I use when doing stuff in R is that if I have a for loop that is doing data processing or simulations, I try to factor it out and replace it with an *apply. Some people shy away from the *apply functions because they think only single parameter functions can be passed in. Nothing could be further from the truth! Like passing around functions with parameters as first class objects in Javascript, you do this in R with anonymous functions. For example:

 > sapply(rnorm(100, 0, 1), round)
  [1]  1  1  0  1  1 -1 -2  0  2  2 -2 -1  0  1 -1  0  1 -1  0 -1  0  0  0  0  0
 [26]  2  0 -1 -2  0  0  1 -1  1  5  1 -1  0  1  1  1  2  0 -1  1 -1  1  0 -1  1
 [51]  2  1  1 -2 -1  0 -1  2 -1  1 -1  1 -1  0 -1 -2  1  1  0 -1 -1  1  1  2  0
 [76]  0  0  0 -2 -1  1  1 -2  1 -1  1  1  1  0  0  0 -1 -3  0 -1  0  0  0  1  1


> sapply(rnorm(100, 0, 1), round(x, 2)) # How can we pass a parameter?
Error in match.fun(FUN) : object 'x' not found


# Wrap your function call in an anonymous function to use parameters
> sapply(rnorm(100, 0, 1), function(x) {round(x, 2)})
  [1] -0.05 -1.74 -0.09 -1.23  0.69 -1.43  0.76  0.55  0.96 -0.47 -0.81 -0.47
 [13]  0.27  0.32  0.47 -1.28 -1.44 -1.93  0.51 -0.82 -0.06 -1.41  1.23 -0.26
 [25]  0.22 -0.04 -2.17  0.60 -0.10 -0.92  0.13  2.62  1.03 -1.33 -1.73 -0.08
 [37]  0.45 -0.93  0.40  0.05  1.09 -1.23 -0.35  0.62  0.01 -1.08  1.70 -1.27
 [49]  0.55  0.60 -1.46  1.08 -1.88 -0.15  0.21  0.06  0.53 -1.16 -2.13 -0.03
 [61]  0.33 -1.07  0.98  0.62 -0.01 -0.53 -1.17 -0.28 -0.95  0.71 -0.58 -0.03
 [73] -1.47 -0.75 -0.54  0.42 -1.63  0.05 -1.90  0.40 -0.01  0.14 -1.58  1.37
 [85] -1.00 -0.90  1.69 -0.11 -2.19 -0.74  1.34 -0.75 -0.51 -0.99 -0.36 -1.63
 [97] -0.98  0.61  1.01  0.55

# Note that anonymous functions aren't being called, but being passed.
> function() {print('hello #rstats')}()
function() {print('hello #rstats')}()
> a = function() {print('hello #rstats')}
> a
function() {print('hello #rstats')}
> a()
[1] "hello #rstats"

(For those that follow #rstats, I also posted this there).

Remember, use apply, sapply, lapply, tapply, and do.call! Take avantage of R's vectorization. You should never walk up to a bunch of R code and see:

N = 10000
l = numeric()
for (i in seq(1:N)) {
    sim <- rnorm(1, 0, 1)
    l <- rbind(l, sim)
}

Not only is this not vectorized, but the array structure in R is not grown as it is in Python (doubling size when space runs out, IIRC). So each rbind step must first grow l enough to accept the results from rbind(), then copy all over the previous l's contents. For fun, try the above in R. Notice how long it takes (you won't even need Rprof or any timing function). Then try

N=10000
l <- rnorm(N, 0, 1)

The following is better than the first version too:

N = 10000
l = numeric(N)
for (i in seq(1:N)) {
    sim <- rnorm(1, 0, 1)
    l[i] <- sim
}
link|flag
apply, sapply, lapply and tapply are useful. If you want to pass parameters to a named function like round, you can just pass it along with apply instead of writing an anonymous function. Try "sapply(rnorm(10, 0, 1), round, digits=2)" which outputs "[1] -0.29 0.29 1.31 -0.06 -1.90 -0.84 0.21 0.02 0.23 -1.10". – Daniel Nov 3 at 13:13
vote up 0 vote down

It seems I cannot comment (maybe it has to do with this "reputation" business)

Anyway further to the RGoogleDocs tips above:

ps <-readline(prompt="get the password in ")

This won't work from within Emacs, which I like to use for R, with ESS of course.

On Linux, you can use zenity to get the password from user input, and set it to hide the input, so as an additional benefit, your password is not plaintext on your screen:

mypass <- system("zenity --entry --hide-text",intern=TRUE)

link|flag
vote up 6 vote down

Data Input trick = RGoogleDocs package

http://www.omegahat.org/RGoogleDocs/

I have found Google spreadsheets to be a fantastic way for all collaborators to be on the same page. Furthermore, Google Forms allows one to capture data from respondents and effortlessly write it to a google spreadsheet. Since data changes frequently and is almost never final it is far preferable for R to read a google spreadsheet directly than to futz with downloading csv files and reading them in.

# Get data from google spreadsheet
library(RGoogleDocs)
ps <-readline(prompt="get the password in ")
auth = getGoogleAuth("me@gmail.com", ps, service="wise")
sheets.con <- getGoogleDocsConnection(auth)
ts2=getWorksheets("Data Collection Repos",sheets.con)
names(ts2)
init.consent <-sheetAsMatrix(ts2$Sheet1,header=TRUE, as.data.frame=TRUE, trim=TRUE)

I cannot rembember which but one or two of the following commands takes several seconds.

  1. getGoogleAuth

  2. getGoogleDocsConnection

  3. getWorksheets

link|flag
vote up 2 vote down

CrossTable() from the gmodels package provides easy access to SAS- and SPSS-style crosstabs, along with the usual tests (Chisq, McNemar, etc.). Basically, it's xtabs() with fancy output and some additional tests - but it does make sharing output with the heathens easier.

link|flag
Nice!! I use gmodels quite a bit, but missed that one – Abhijit Sep 5 at 9:57
vote up 1 vote down

set.seed() sets the random number generator state.

For example:

> set.seed(123)
> rnorm(1)
[1] -0.5604756
> rnorm(1)
[1] -0.2301775
> set.seed(123)
> rnorm(1)
[1] -0.5604756
link|flag
super useful with examples that use random functions... helps get everyone on the same page – JD Long Aug 25 at 1:58
vote up 2 vote down

Use backticks to reference non standard names.

> df <- data.frame(x=rnorm(5),y=runif(5))
> names(df) <- 1:2
> df
           1         2
1 -1.2035003 0.6989573
2 -1.2146266 0.8272276
3  0.3563335 0.0947696
4 -0.4372646 0.9765767
5 -0.9952423 0.6477714
> df$1
Error: unexpected numeric constant in "df$1"
> df$`1`
[1] -1.2035003 -1.2146266  0.3563335 -0.4372646 -0.9952423

In this case, df[,"1"] would also work. But back ticks work inside formulas!

> lm(`2`~`1`,data=df)

Call:
lm(formula = `2` ~ `1`, data = df)

Coefficients:
(Intercept)          `1`  
     0.4087      -0.3440

[Edit] Dirk asks why one would give invalid names? I don't know! But I certainly encounter this problem in practice fairly often. For example, using hadley's reshape package:

> library(reshape)
> df$z <- c(1,1,2,2,2)
> recast(df,z~.,id.var="z")
Aggregation requires fun.aggregate: length used as default
  z (all)
1 1     4
2 2     6
> recast(df,z~.,id.var="z")$(all)
Error: unexpected '(' in "recast(df,z~.,id.var="z")$("
> recast(df,z~.,id.var="z")$`(all)`
Aggregation requires fun.aggregate: length used as default
[1] 4 6
link|flag
Ok, but why would you need to replace syntactically valid names (like x or y) with invalid ones (like 1 or 2) requiring the backticks? – Dirk Eddelbuettel Aug 22 at 16:28
1  
It's also useful in read.table when check.names is false - i.e. when you want to work with the original column names. – hadley Aug 24 at 2:23
vote up 2 vote down

Definitively system(). To be able to have access to all the unix tools (at least under Linux/MacOSX) from inside the R environment has rapidly become invaluable in my daily workflow.

link|flag
1  
That ties into my earlier comment about connections: you can also use pipe() to pass data from, or to, Unix commands. See help(connections) for details and examples. – Dirk Eddelbuettel Aug 22 at 16:27
Thanks, very useful! – Paolo Aug 22 at 16:31
vote up 0 vote down

I've posted this once before but I use it so much I thought I'd post it again. Its just a little function to return the names and position numbers of a data.frame. Its nothing special to be sure, but I almost never make it through a session without using it multiple times.

##creates an object from a data.frame listing the column names and location

namesind=function(df){

temp1=names(df)
temp2=seq(1,length(temp1))
temp3=data.frame(temp1,temp2)
names(temp3)=c("VAR","COL")
return(temp3)
rm(temp1,temp2,temp3)

}

ni <- namesind

link|flag
This is a really a one-liner: data.frame(VAR = names(df), COL = seq_along(df)) – hadley Aug 21 at 15:58
very elegant, maybe I'll switch it to ni <- function(df){data.frame(VAR = names(df), COL = seq_along(df))} – kpierce8 Aug 21 at 22:59
vote up 7 vote down

head() and tail() to get the first and last parts of a dataframe, vector, matrix, function, etc. Especially with large data frames, this is a quick way to check that it has loaded ok.

link|flag
vote up 0 vote down

To perform an operation on a number of variables in a data frame. This is stolen from subset.data.frame.

get.vars<-function(vars,data){
    nl <- as.list(1L:ncol(data))
    names(nl) <- names(data)
    vars <- eval(substitute(vars), nl, parent.frame())
    data[,vars]
    #do stuff here
}

get.vars(c(cyl:hwy,class),mpg)
link|flag
1  
This seems cool at first, but this sort of code will cause you no end of trouble in the long run. It's always better to be explicit. – hadley Aug 21 at 15:57
hum, I've been using this trick quite a bit as of late. Could you be more specific about its unbounded trouble? – Ian Fellows Aug 21 at 20:41
Maybe hadley is suggesting using the plyr package instead? – chris_dubois Aug 22 at 22:25
1  
No, this isn't a veiled suggestion to use plyr instead. The basically problem with your code is that it is semantically lazy - instead of making the user explicitly spell out what they want, you do some "magic" to guess. The problem with this is that it makes the function very hard to program with - i.e. it's difficult to write a function that calls get.vars without jumping through a whole lot of hoops. – hadley Aug 23 at 14:00
vote up 2 vote down

A way to speed up code and eliminate for loops.

instead of for loops that loop through a dataframe looking for values. just take a subset of the df with those values, much quicker.

so instead of:

for(i in 1:nrow(df)){
  if (df$column[i] == x) {
    df$column2[i] <- y
    or any other similiar code
  }
}

do something like this:

df$column2[df$column1 == x] <- y

that base concept is applicable extremely often and is a great way to get rid of for loops

link|flag
1  
There is a small trap here that used to catch me up all the time. If df$column1 contains NA values, subsetting using == will pull out any values that equal x and any NAs. To avoid this, use "%in%" instead of "==". – Matt Parker Aug 21 at 15:03
Matt you're absolutely right and it's something that I hate, I like your method though. I usually check the column for NAs and then remove them with a quick function i made that takes a dataframe column and returns the dataframe minus rows with NAs in just that column. – Dan Aug 22 at 20:52
You mean na.omit? ;) – hadley Aug 23 at 23:21
essentially, i pare a dataframe down to the columns i need to have values then use na.omit to get the correct rows and then subset the original dataset with only those rows. Just using na.omit would remove any row with any NA, I could be mistaken though. – Dan Aug 25 at 21:41
vote up 1 vote down

One of my favorite, if not somewhat unorthodox tricks, is the use of eval() and parse(). This example perhaps illustrates how it can be helpful

NY.Capital <- 'Albany'
state <- 'NY'
parameter <- 'Capital'
eval(parse(text=paste(state, parameter, sep='.')))

[1] "Albany"

This type of situation occurs more often than not, and use of eval() and parse() can help address it. Of course, I welcome any feedback on alternative ways of coding this up.

link|flag
This can be done as well with named vector elements. – Dirk Eddelbuettel Aug 21 at 2:01
library(fortunes);fortune(106) If the answer is parse() you should usually rethink the question. -- Thomas Lumley R-help (February 2005) – Eduardo Leoni Aug 21 at 11:40
Here's an example where eval() and parse() can be useful. This involves a Bioconductor package, e.g. hgu133a.db and where you are trying to obtain various pieces of information about a probeset id. For example: library(hgu133a.db) parameter <- 'SYMBOL' mget('202431_s_at', env=eval(parse(text=paste('hgu133a',parameter, sep='')))) parameter <- 'ENTREZID' mget('202431_s_at', env=eval(parse(text=paste('hgu133a',parameter, sep='')))) – andrewj Aug 21 at 15:53
As Dirk says, this is better done with named vector elements, or get(paste(state, parameter, sep='.')) – hadley Aug 21 at 15:55
@Hadley, didn't know that you could use get() that way. Thanks. – andrewj Aug 21 at 20:44
vote up 5 vote down
?ave

Subsets of 'x[]' are averaged, where each subset consist of those observations with the same factor levels. Usage: ave(x, ..., FUN = mean)

I use it all the time. (e.g. in this answer here at so)

link|flag
when you used that on my 'mixed merge' question it was the first time I had seen it. I'm really glad you showed me this. – JD Long Aug 21 at 0:54
Totally agree, ave() is very useful. – andrewj Aug 21 at 15:40
vote up 5 vote down

Don't know how well known this is/isn't, but something that I've definitely taken advantage of are the pass-by-reference capabilities of environments.

zz <- new.env()
zz$foo <- c(1,2,3,4,5)
changer <- function(blah) {
   blah$foo <- 5
}
changer(zz)
zz$foo

For this example it doesn't make sense why it'd be useful, but if you're passing large objects around it can help.

link|flag
vote up 3 vote down

Here is an annoying workaround to convert a factor into a numeric. (Similar for other data types as well)

old.var <- as.numeric(levels(old.var))[as.numeric(old.var)]
link|flag
1  
Maybe you meant "into a characater" vector. In which case "as.character(old.var)" is simpler. – Dirk Eddelbuettel Aug 19 at 16:03
I've always thought this advice (which can be read at ?factor) to be misguided. You have to be sure old.var is a factor, and this will vary according on the options you set for the R session. Using as.numeric(as.character(old.var)) is both safer and cleaner. – Eduardo Leoni Aug 20 at 4:32
Really not worth a downvote, but whatever. This works for me. – Ryan Rosario Aug 20 at 5:45
Ryan - Could you fix your code? If old.var <- factor(1:2); your code will give [1] "1" "2" (not numeric.) perhaps you meant as.numeric(levels(old.var)[old.var])? – Eduardo Leoni Aug 20 at 7:40
2  
Or slightly more efficiently: as.numeric(levels(old.var))[old.var] – hadley Aug 20 at 12:53
show 2 more comments
vote up 1 vote down

Another trick. Some packages, like glmnet, only take as inputs the design matrix and the response variable. If one wants to fit a model with all interactions between features, she can't use the formula "y ~ .^2". Using expand.grid() allows us to take advantage of the powerful array indexing and vector operations of R.

interArray=function(X){
    n=ncol(X)
    ind=expand.grid(1:n,1:n)
    return(X[,ind[,1]]*X[,ind[,2]])
}

> X
          X1         X2
1 0.96852363 0.33827107
2 0.08012755 0.69159828
3 0.10167545 0.38119304
4 0.06699458 0.41756415
5 0.08187816 0.09805104

> interArray(X)
           X1          X2        X1.1        X2.1
1 0.938038022 0.327623524 0.327623524 0.114427316
2 0.006420424 0.055416073 0.055416073 0.478308177
3 0.010337897 0.038757974 0.038757974 0.145308137
4 0.004488274 0.027974536 0.027974536 0.174359821
5 0.006704033 0.008028239 0.008028239 0.009614007
link|flag
1  
If a modelling function doesn't accept a formula (which is very rare!) wouldn't it be better to construct the design matrix with model.matrix? – hadley Aug 19 at 12:14
Nice one. I didn't know of the existence of this function. The function above is equivalent to model.matrix(~.^2 -1,X) But regarding passing matrices, aside from glmnet, it is frequent for me to pass array pointers to custom C functions. Indeed, I wouldn't know how to pass a formula to a function. Do you have a toy example? – gappy Aug 19 at 13:47
vote up 4 vote down

Upon Dirk's advice, I am posting single examples. I hope they are not too "cute" [clever, but I don't care] or trivial for this audience.

Linear models are the bread and butter of R. When the number of independent variables is high, one has two choices. The first is to it use lm.fit(), which receives the design matrix x and the response y as arguments, similarly to Matlab. The drawback to this approach is that the return value is a list of objects (fitted coefficients, residuals, etc), not an object of class "lm", which can be nicely summarized, used for prediction, stepwise selection, etc. The second approach is create a formula:

> A
           X1         X2          X3         X4         y
1  0.96852363 0.33827107 0.261332257 0.62817021 1.6425326
2  0.08012755 0.69159828 0.087994158 0.93780481 0.9801304
3  0.10167545 0.38119304 0.865209832 0.16501662 0.4830873
4  0.06699458 0.41756415 0.258071616 0.34027775 0.7508766
   ...

> (f=paste("y ~",paste(names(A)[1:4],collapse=" + ")))
[1] "y ~ X1 + X2 + X3 + X4"

> lm(formula(f),data=A)

Call:
lm(formula = formula(f), data = A)

Coefficients:
(Intercept)           X1           X2           X3           X4  
    0.78236      0.95406     -0.06738     -0.43686     -0.06644
link|flag
How about if you pick one per post and illustrate with an example? We can then keep going for days on end and post new examples with new commands... [ BTW: As I recall, you need as.formula(paste(...)) for formula use. ] – Dirk Eddelbuettel Aug 19 at 1:53
You do not need the explicitly formula creation to cover all columns as the form "y ~ . - 1" covers it. The "." means 'all columns except the dependent variable, and the '- 1' excludes the constant as in your example. – Dirk Eddelbuettel Aug 19 at 12:10
That's right for this specific example, but for X with ncols>>nrows, I often remove some independent variables, especially in the final stages of the analysis. In this case, creating a formula from the data frame names is still handy. – gappy Aug 19 at 13:52
vote up 5 vote down

One nice feature: Reading data uses connections which can be local files, remote files accessed via http, pipes from other programs or more.

As a simple example, consider this access for N=10 random integers between min=100 and max=200 from random.org (which supplies true random numbers based on atmospheric noise rather than a pseudo random number generator):

R> site <- "http://random.org/integers/"         # base URL
R> query <- "num=10&min=100&max=200&col=2&base=10&format=plain&rnd=new"
R> txt <- paste(site, query, sep="?")            # concat url and query string
R> nums <- read.table(file=txt)                  # and read the data
R> nums                                          # and show it
   V1  V2
1 165 143
2 107 118
3 103 132
4 191 100
5 138 185
R>

As an aside, the random package provides several convenience functions for accessing random.org.

link|flag
BTW-- I'd suggest that you should make selfanswers CW if (1) you post them promptly and (2) you don't make the question CW. Otherwise it looks a bit like you're trying to game the rep system. YMMV and all that. – dmckee Aug 18 at 21:27
1  
It's not gaming the system, just getting things started. He's still free to accept any other answer. – ars Aug 19 at 0:45
1  
@ars: He's free to accept this one. Nor am I going to attempt to force him to wiki it if he won;t take my advice. But I won't post a prepared selfanswer without marking it wiki, and I won't vote for one without it either. Take that for what it's worth. – dmckee Aug 19 at 1:28
1  
@Dirk: it is wholly acceptable, even encouraged by Jeff and Joel, to answer your own question. There is NO requirement, not even an informal one, to make your answer CW. You're clearly not gaming the system. Once again, just ignore the community wiki police. – Juliet Aug 20 at 12:13
4  
I have to agree that part of the sites purpose is to provide best answers for common problems and a general resource. Posing a questions and providing a good answer can help bolster a topic. This is especially useful with new/small tags such as R. – kpierce8 Aug 21 at 14:42
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.