The r-faq tag is created to group a limited number of questions discussing problems that come up regularly on the R tag. It is not the official FAQ on R for SO, but should serve as an interesting source of information on common problems.
89
votes
6answers
3k 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 ...
50
votes
4answers
4k 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 ...
35
votes
3answers
15k 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
...
20
votes
5answers
2k 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
> ...
11
votes
3answers
738 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 ...
10
votes
2answers
316 views
R: How to measure similarity between strings?
I have a bunch of names, and I want to obtain the unique names. However, due to spelling errors and inconsistencies in the data the names might be written down wrong. I am looking for a way to check ...
9
votes
4answers
299 views
What does “S3 methods” mean in R?
Since I am fairly new to R, I do not know what the S3 methods and objects are. I found that there are S3 and S4 object systems, and some recommend to use S3 over S4 if possible ...
8
votes
1answer
181 views
R: how to efficiently filter a data frame?
I have a data frame and tried to select only the observations I'm interested in by this:
data[data["Var1"]>10]
Unfortunately, this command destroys the data.frame structure and returns a long ...
8
votes
4answers
2k 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 ...
5
votes
4answers
623 views
How to save a plot as image on the disk?
I plot a simple linear regression using R.
I would like to save that image as png or jpeg, is it possible to do it automatically? (via code)
5
votes
3answers
191 views
R: index values from a matrix using row, col indicies
This is probably simple to solve. I have a 2D matrix mat with 500 rows × 335 columns, and a data.frame dat with 120425 rows. The data.frame dat has two columns I and J, which are integers to index the ...
5
votes
3answers
1k 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 ...
3
votes
3answers
39 views
How to get Mean, median , other statistics over ENTIRE Matrix, array or dataframe in R?
I know this is a basic question but for some strange reason i am unable to find an answer.
How should i apply basic statistical functions like mean, median etc over entire array, matrix or dataframe ...
3
votes
1answer
177 views
set default CRAN mirror permanent in R
How can I set a specific CRAN mirror permanently in R?
I want to set it permanently in my laptop so that when I do install.packages, it won't ask me again which mirror to choose.
3
votes
1answer
184 views
ggplot's qplot does not execute on sourcing
Let's assume I have 2 source files, the first one namest 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, ...
2
votes
3answers
242 views
How to create an index from a variable in a dataframe
I have a data frame (all_data) in which I have a list of sites (1...to n) and their scores e.g.
site score
1 10
1 11
1 12
4 10
4 11
4 11
8 ...
2
votes
3answers
151 views
Conditional merge/replacement in R
Greetings,
I have two data frames:
df1
x1 x2
1 a
2 b
3 c
4 d
and
df2
x1 x2
2 zz
3 qq
I want to replace some of the values in df1$x2 with values in df2$x2 based on the conditional ...
2
votes
5answers
705 views
Read an Excel file directly from a R script
How can I read an Excel file directly into R? Or should I export the data to a text- or CSV file first and import that in R?
0
votes
1answer
60 views
How can I get rid of unsampled data in an R heatmap after sampling?
The following code produces a heatmap but shows labels on the y axis for all 194 countries included in the original dataset (before sampling). This continues to happen even if I remove the original ...
-5
votes
1answer
313 views
Slow `for` loop in R [closed]
I have been using R for a few days now but I do find it extremelly slow (for loop takes for ever). I created simple script with basic computation and plotting of 1 graph. Does that sound normal to ...