R is a free, open source programming language and software environment for statistical computing, bioinformatics and graphics. It is advised to supplement your question with a reproducible example (http://stackoverflow.com/q/5963269); for statistical questions please use crossvalidated.com.
304
votes
11answers
16k views
How to make a great R reproducible example?
When discussing performance with colleagues, teaching, sending a bug report or searching for guidance on mailing lists and here on SO, a reproducible example is often asked and always helpful.
What ...
241
votes
6answers
21k views
How can we make xkcd style graphs in R?
Apparently, folk have figured out how to make xkcd style graphs in Mathematica and in LaTeX. Can we do it in R? Ggplot2-ers? A geom_xkcd and/or theme_xkcd?
I guess in base graphics, par(xkcd=TRUE)? ...
226
votes
17answers
13k views
What statistics should a programmer (or computer scientist) know? [closed]
I'm a programmer with a decent background in math and computer science. I've studied computability, graph theory, linear algebra, abstract algebra, algorithms, and a little probability and statistics ...
221
votes
2answers
9k views
How to properly document S4 class slots using Roxygen2
For documenting classes with roxygen(2), specifying a title and description/details appears to be the same as for functions, methods, data, etc. However, slots and inheritance are their own sort of ...
173
votes
9answers
113k views
How to sort a dataframe by column(s) in R
I want to sort a data.frame by multiple columns in R. For example, with the data.frame below I would like to sort by column z (descending) then by column b (ascending):
dd <- data.frame(b = ...
166
votes
4answers
39k views
R Grouping functions: sapply vs. lapply vs. apply. vs. tapply vs. by vs. aggregate vs
Whenever I want to do something "map"py in R, I usually try to use a function in the apply family. (Side question: I still haven't learned plyr or reshape -- would plyr or reshape replace all of these ...
138
votes
12answers
19k views
Tricks to manage the available memory in an R session?
What tricks do people use to manage the available memory of an interactive R session? I use the functions below [based on postings by Petr Pikal and David Hinds to the r-help list in 2004] to list ...
128
votes
11answers
51k views
What can MATLAB do that R cannot do? [closed]
I often hear people complain how expensive MATLAB licenses are. Then I wonder why they don't just use Octave or R. But is the latter right? Can you use R to replace MATLAB?
109
votes
4answers
43k views
How to join data frames in R (inner, outer, left, right)?
Given two data frames
df1 = data.frame(CustomerId=c(1:6),Product=c(rep("Toaster",3),rep("Radio",3)))
df2 = data.frame(CustomerId=c(2,4,6),State=c(rep("Alabama",2),rep("Ohio",1)))
> df1
...
104
votes
25answers
17k views
Expert R users, what's in your .Rprofile? [closed]
This question is maybe a little too cute, but I have always found startup profile files of other people both useful and instructive about the language. Moreover, while I have some customization for ...
100
votes
6answers
16k views
Quickly reading very large tables as dataframes in R
I have very large tables that I would like to load as a dataframes in R. read.table() has a lot of convenient features, but it seems like there is a lot of logic in the implementation that would slow ...
96
votes
15answers
11k views
Most underused data visualization [closed]
Histograms and scatterplots are great methods of visualizing data and the relationship between variables, but recently I have been wondering about what visualization techniques I am missing. What do ...
92
votes
8answers
69k views
Drop Columns R Data frame
I have a number of columns that I would like to drop from a data frame. I know that we can drop them using something like:
df$x <- NULL
but I was hoping to do this with fewer commands.
Also, I ...
80
votes
21answers
5k views
How to search for “R” materials? [closed]
"The Google" is very helpful... unless your language is called "R," in which case it spits out tons of irrelevant stuff.
Anyone have any search engine tricks for "R"? There are some specialized ...
80
votes
6answers
99k views
Plot 2 graphs in same plot in R?
I would like to plot y1 and y2 in the same plot.
x <- seq(-2, 2, 0.05)
y1 <- pnorm(x)
y2 <- pnorm(x,1,1)
plot(x,y1,type="l",col="red")
plot(x,y2,type="l",col="green")
But when I do it ...
77
votes
6answers
35k views
How to Correctly Use Lists in R?
Brief background: Many (most?) contemporary programming languages in widespread use have at least a handful of ADTs [abstract data types] in common, in particular,
string (a (sequence comprised of ...
76
votes
12answers
12k views
Workflow for statistical analysis and report writing [closed]
Does anyone have any wisdom on workflows for data analysis related to custom report writing? The use-case is basically this:
Client commissions a report that uses data analysis, e.g. a population ...
75
votes
1answer
2k views
Arbitrary sections in roxygen docs
The way Roxygen seems to work is that the first line is the \title, everything else is in the \details, and then any @foo directives handle those things. But R documentation is richer than that. I can ...
73
votes
2answers
25k views
Rotating and spacing axis labels in ggplot2
I have a plot where the x-axis is a factor whose labels are long. While probably not an ideal visualization, for now I'd like to simply rotate these labels to be vertical. I've figured this part out ...
71
votes
8answers
13k views
Tools for making latex tables in R [closed]
On general request, a community wiki on producing latex tables in R. In this post I'll give an overview of the most commonly used packages and blogs with code for producing latex tables from less ...
70
votes
7answers
26k views
dropping factor levels in a subsetted data frame in R
I have a data frame containing a factor. When I create a subset of this data frame using subset() or another indexing function, a new data frame is created. However, the factor variable retains all ...
66
votes
4answers
42k views
remove rows with NAs in data.frame
I'd like to remove the lines in this dataframe that contain NAs across all columns. Below is my example data.frame.
gene hsap mmul mmus rnor cfam
1 ENSG00000208234 0 NA NA NA ...
66
votes
7answers
26k views
How can I read command line parameters from an R script?
I've got a R script for which I'd like to be able to supply several command-line parameters (rather than hardcode parameter values in the code itself). The script runs on Windows.
I can't find info ...
65
votes
1answer
4k views
In R, why is `[` better than `subset`?
When I need to filter a data.frame, i.e., extract rows that meet certain conditions, I prefer to use the subset function:
subset(airquality, Month == 8 & Temp > 90)
rather than the [ ...
58
votes
12answers
10k views
Rolling median algorithm in C
I am currently working on an algorithm to implement a rolling median filter (analogous to a rolling mean filter) in C. From my search of the literature, there appear to be two reasonably efficient ...
57
votes
20answers
6k views
Suitable functional language for scientific/statistical computing?
I use mostly R and C for statistics-related tasks. Recently
I have been dealing with large datasets, typically 1e7-1e8
observations, and 100 features. They seem too big for R too
handle, and the ...
57
votes
5answers
5k views
Is R's apply family more than syntactic sugar?
...regarding execution time and / or memory.
If this is not true, prove it with a code snippet. Note that speedup by vectorization does not count. The speedup must come from apply (tapply, sapply, ...
57
votes
13answers
9k views
R and version control for the solo data analyst
Many data analysts that I respect use version control.
For example:
http://github.com/hadley/
See comments on http://permut.wordpress.com/2010/04/21/revision-control-statistics-bleg/
However, I'm ...
56
votes
4answers
2k views
`levels<-`( What sorcery is this?
In an answer to another question, @Marek posted the following solution:
http://stackoverflow.com/a/10432263/636656
dat <- structure(list(product = c(11L, 11L, 9L, 9L, 6L, 1L, 11L, 5L,
...
56
votes
5answers
6k views
Assignment operators in R: '=' and '<-'
What are differences in the assignment operators '=' and '<-' in R? I know that operators are slightly different as this example shows
> x <- y <- 5
> x = y = 5
> x = y <- 5
> ...
54
votes
4answers
3k views
Where can I learn to how to write C code to speed up slow R functions?
What's the best resource for learning how to write C code for use with R? I know about the system and foreign language interfaces section of R extensions, but I find it pretty hard going. What are ...
54
votes
2answers
6k views
What is the difference between require() and library()
I do not manage to figure out the difference between require() and library() when loading a package in R. Do you some hint for me?
Thx!
54
votes
3answers
8k views
How to convert R Markdown to PDF?
I've previously asked about the commands for converting R Markdown to HTML.
What is a good way to convert R Markdown files to PDF documents?
A good solution would preserve as much as possible of ...
54
votes
1answer
2k views
Interpolate product attributes
I have a set of data from a set of discrete choice tasks which included two alternatives with three attributes (brand, price, performance). From this data, I have taken 1000 draws from the posterior ...
52
votes
10answers
5k views
How to organize large R programs?
When I undertake an R project of any complexity, my scripts quickly get long and confusing.
What are some practices I can adopt so that my code will always be a pleasure to work with? I'm thinking ...
51
votes
4answers
4k views
Position of the sun given time of day, latitude and longitude
This question has been asked before a little over three years ago. There was an answer given, however I've found a glitch in the solution.
Code below is in R. I've ported it to another language, ...
51
votes
1answer
546 views
controlling the output with RApacheOutputErrors
I have activated ROutputErrors in r.conf and it works as is suppose to
do.
When I have an error I get this:
Oops!!! rApache has something to tell you. View source and read the
HTML comments at ...
49
votes
7answers
13k views
List of ggplot2 options?
After some research I found the way to prevent an uninformative legend from displaying
... + opts(legend.position = "none")
Where can I find all the available "opts" for ggplot2?
49
votes
3answers
40k views
R function for testing if a vector contains a given element
In R, how do you test a vector to see if it contains a given element?
48
votes
9answers
4k views
Is R “that bad” that it should be rewritten from scratch?
In the past week I've been following a discussion where Ross Ihaka wrote:
I’ve been worried for some time that R
isn’t going to provide the base that
we’re going to need for statistical
...
47
votes
5answers
8k views
Painless way to install a new version of R (on Windows)?
Andrew Gelman recently lamented the lack of an easy upgrade process for R (probably more relevant on Windows that Linux). Does anyone have a good trick for doing the upgrade, from installing the ...
47
votes
1answer
557 views
Rd file name conflict when extending a S4 method of some other package
Actual question
How do I avoid Rd file name conflicts when
a S4 generic and its method(s) are not necessarily all defined in the same package (package containing (some of) the custom method(s) ...
47
votes
2answers
783 views
Specify monospace font in `menu`
Language: R. Question: Can I specify fixed width font for the menu(..,graphics=T) function?
Explanation:
I recently asked this question on how to have a user select a row of a data frame ...
46
votes
1answer
1k views
Implementing standard software design patterns (focus on MVC) in R
Currently, I'm reading a lot about Software Engineering, Software Design, Design Patterns etc. Coming from a totally different background, that's all new fascinating stuff to me, so please bear with ...
45
votes
9answers
41k views
Append an object to a list in R in amortized constant time?
If I have some R list mylist, you can append an item obj to it like so:
mylist[[length(mylist)+1]] <- obj
But surely there is some more compact way. When I was new at R, I tried writing ...
44
votes
7answers
2k views
When does it pay off to use S4 methods in R programming
I program regularly in R in a professional context, and I write packages for clients or co-workers as well. Some of the programmers here have a Java background and insist on doing everything the ...
43
votes
10answers
4k views
Trimming a huge (3.5 GB) csv file to read into R
So I've got a data file (semicolon separated) that has a lot of detail and incomplete rows (leading Access and SQL to choke). It's county level data set broken into segments, sub-segments, and ...
42
votes
25answers
3k views
What's the biggest R-gotcha you've run across? [closed]
Is there a certain R-gotcha that had you really surprised one day? I think we'd all gain from sharing these.
Here's mine: in list indexing, my.list[[1]] is not my.list[1]. Learned this in the early ...
42
votes
7answers
7k views
In R, what is the difference between the [] and [[]] notations for accessing the elements of a list?
R provides two different methods for accessing the elements of a list or data.frame- the [] and [[]] operators.
What is the difference between the two? In what situations should I use one over the ...
42
votes
10answers
18k views
Standard library function in R for finding the mode?
In statistical language R, mean() and median() are standard functions which do what you'd expect. mode() tells you the internal storage mode of the R object, not the value that occurs the most in its ...

