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.

learn more… | top users | synonyms (1)

302
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 ...
99
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 ...
10
votes
2answers
768 views

Why are these numbers not equal?

The following code is obviously wrong. What's the problem? > i <- 0.1 > i <- i + 0.05 > i [1] 0.15 > if(i==0.15) cat("i equals 0.15") else cat("i does not equal 0.15") i does not ...
166
votes
4answers
38k 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 ...
171
votes
9answers
112k 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 = ...
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 ...
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, ...
36
votes
1answer
34k views

How to convert a factor to an integer\numeric without a loss of information

When I convert a factor to a numeric, the values change to rank values. R> m$obs [1] 0 0 1 1 1 1 3 3 3 3 3 3 3 9 9 9 9 9 9 9 9 9 11 11 12 13 13 13 13 13 13 13 14 Levels: 0 ...
40
votes
3answers
13k views

Scraping html tables into R data frames using the XML package

How do I scrape html tables using the XML package? Take, for example, this wikipedia page on the Brazilian soccer team. I would like to read it in R and get the "list of all matches Brazil have ...
32
votes
6answers
9k views

Speed up the loop operation in R

i have a big performance problem in R. I wrote a function that iterates over an data.frame object. It simply adds a new col to a data.frame and accumulate sth. (simple operation). The data.frame has ...
108
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 ...
64
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 [ ...
22
votes
3answers
10k views

Order Bars in ggplot2 bar graph

I am trying to make a bar graph where the largest bar would be nearest to the y axis and the shortest bar would be furthest. So this is kind of like theTable I have Name Position 1 James ...
22
votes
1answer
2k views

Cannot install R-forge package using install.packages

This, question, is, asked, over, and, over, and, over, on the R-sig-finance mailing list, but I do not think it has been asked on stackoverflow. It goes like this: Where can I obtain the latest ...
38
votes
10answers
7k views

General suggestions for debugging R?

I get an error from R when using a function that I wrote: Warning messages: 1: glm.fit: algorithm did not converge 2: glm.fit: algorithm did not converge What I have done step through the ...
14
votes
1answer
4k views

Reshape three column data frame to matrix

I have a data.frame that looks like this. x a 1 x b 2 x c 3 y a 3 y b 3 y c 2 I want this in matrix form so I can feed it to heatmap to make a plot. The result should look something like: ...
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 ...
69
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 ...
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 ...
12
votes
3answers
616 views

Idiomatic R code for partitioning a vector by an index and performing an operation on that partition

I'm trying to find the idiomatic way in R to partition a numerical vector by some index vector, find the sum of all numbers in that partition and then divide each individual entry by that partition ...
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 ...
19
votes
4answers
34k views

Fitting a density curve to a histogram in R

Is there a function in R that fits a curve to a histogram? Let's say you had the following histogram hist(c(rep(65, times=5), rep(25, times=5), rep(35, times=10), rep(45, times=4))) It looks ...
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 > ...
30
votes
0answers
3k views

What is your favorite R debugging trick? [duplicate]

Possible Duplicate: General suggestions for debugging R? I've recently started using browser() in function definitions for debugging (a great tool!). I feel like print() debugging has been ...
92
votes
8answers
68k 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 ...
40
votes
4answers
4k views

Shading a kernel density plot between two points.

I frequently use kernel density plots to illustrate distributions. These are easy and fast to create in R like so: set.seed(1) draws <- rnorm(100)^2 dens <- density(draws) plot(dens) #or in one ...
19
votes
2answers
9k views

ggplot2: Adding Regression Line Equation and R2 on graph

I wonder how to add regression line equation and R^2 on the ggplot. My code is library(ggplot2) df <- data.frame(x = c(1:100)) df$y <- 2 + 3 * df$x + rnorm(100, sd = 40) p <- ggplot(data = ...
9
votes
3answers
7k views

How to name variables on the fly in R?

Is it possible to create new variable names on the fly? I'd like to read data frames from a list into new variables with numbers at the end. Something like orca1, orca2, orca3... If I try something ...
21
votes
4answers
12k views

Error: could not find function … in R

I am using R and tried some.function but I got this error message : Error: could not find function `some.function` This question comes up very regularly. When you get the error: could not find ...
30
votes
4answers
4k views

How to use R's ellipsis feature when writing your own function?

The R language has a nifty feature for defining functions that can take a variable number of arguments. For example, the function data.frame takes any number of arguments, and each argument becomes ...
41
votes
4answers
14k views

Exception handling in R

Does anyone have examples/tutorials of exception handling in R? The official documentation is very terse.
11
votes
3answers
9k views

R: How to convert string to variable name?

I am using R to parse a list of strings in the form: original_string<-"variable_name=variable_value" First, I extract the variable name and value from the original string and convert the value ...
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 ...
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 ...
39
votes
17answers
23k views

What IDEs are available for R in Linux?

What good IDEs are there for R in Linux? I've tried Rcmdr and Eclipse, but neither seems to have the same usability as Tinn-R in Windows. Are there any other options?
13
votes
3answers
5k views

Merge multiple data frames in a list simultaneously

I have a list of many data frames that I want to merge (not merely rbind, for which plyr's rbind.fill would do the job in a stroke) into a single, combined data frame. Because the merge command only ...
10
votes
7answers
15k views

Read an Excel file directly from a R script

How can I read an Excel file directly into R? Or should I first export the data to a text- or CSV file and import that file into R?
9
votes
3answers
587 views

left align two graph edges (ggplot)

I'm using ggplot and have two graphs that I want to display on top of each other. I used grid.arrange from gridExtra to stack them. The problem is I want the left edges of the graphs to align as ...
11
votes
2answers
960 views

How do I save warnings and errors as output from a function?

I'm using lapply to run a complex function on a large number of items, and I'd like to save the output from each item (if any) together with any warnings/errors that were produced so that I can tell ...
3
votes
9answers
9k views

adding RMySQL package to R fails?

I can't figure out why my RMySQL package won't install - here's what I get: > install.packages('RMySQL',type='source') trying URL 'http://cran.mirrors.hoobly.com/src/contrib/RMySQL_0.7-5.tar.gz' ...
12
votes
8answers
8k views

Best IDE / TextEditor for R [duplicate]

Possible Duplicate: What IDEs are available for R in Linux? Recommendations for Windows text editor for R Which IDE or TextEditor do you use to write R code?
12
votes
1answer
1k views

ggplot's qplot does not execute on sourcing

Let's assume I have 2 source files, the first one named example1.r and the second one example2.r (given below). example1.r plot(1:10,1:10) example2.r qplot(1:10,1:10) When I source example1.r, ...
6
votes
7answers
3k views

TwitteR, ROAuth and Windows: register OK, but certificate verify failed

I'm trying to get the number of followers of a large number of Twitter users with twitteR. Many of the other questions posted have been very useful in getting me this far, but none seem to be directly ...
36
votes
4answers
49k views

How do I install an R package from source?

A friend sent me along this great tutorial on webscraping NYtimes with R. I would really love to try it. However, the first step is to installed a package called RJSONIO from source. I know R ...
37
votes
2answers
23k views

Calculating moving average in R

I'm trying to use R to calculate the moving average over a series of values in a matrix. The normal R mailing list search hasn't been very helpful though. What function in R or that is available as a ...
37
votes
3answers
6k views

Intelligent point label placement in R

1) Is there any R library/function which would implement INTELLIGENT label placement in R plot? I tried some but they are all problematic - many labels are overlaping either each other or other points ...
25
votes
1answer
1k views

Options for caching / memoization / hashing in R

I am trying to find a simple way to use something like Perl's hash functions in R (essentially caching), as I intended to do both Perl-style hashing and write my own memoisation of calculations. ...
16
votes
2answers
4k views

Merge several data.frames into one data.frame with a loop

I am trying to merge several data.frames into one data.frame. Since I have a whole list of files I am trying to do it with a loop structure. So far the loop approach works fine. However, it looks ...
16
votes
2answers
753 views

Combine base and ggplot graphics in R figure window

I would like to generate a figure that has a combination of base and ggplot graphics. The following code shows my figure using the base plotting functions of R: t <- c(1:(24*14)) P <- 24 A ...
14
votes
2answers
591 views

Understanding exactly when a data.table is a reference to (vs a copy of) another data.table

I'm having a little trouble understanding the pass-by-reference properties of data.table. Some operations seem to 'break' the reference, and I'd like to understand exactly what's happening. On ...

1 2 3 4 5 87