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.

learn more… | top users | synonyms

4
votes
2answers
235 views

Use of ~ (tilde) in R programming Language

I saw in a tutorial about regression modeling the following command : myFormula <- Species ~ Sepal.Length + Sepal.Width + Petal.Length + Petal.Width What exactly does this command do, and what ...
1
vote
2answers
137 views

acos(1) returns NaN for some values, not others

I have a list of latitude and longitude values, and I'm trying to find the distance between them. Using a standard great circle method, I need to find: acos(sin(lat1)*sin(lat2) + cos(lat1)*cos(lat2) ...
0
votes
1answer
185 views

Adding more than one column to a dataframe [duplicate]

Possible Duplicate: How to join data frames in R (inner, outer, left, right)? Combine two data frames and remove duplicate columns How do I add more than one column to a dataframe? I ...
23
votes
3answers
683 views

Why is `vapply` safer than `sapply`?

The documentation says vapply is similar to sapply, but has a pre-specified type of return value, so it can be safer [...] to use. Could you please elaborate as to why it is generally safer, ...
5
votes
1answer
233 views

How can I read the code for summary() for a data frame?

I have a data frame and I want to learn how the summary generates it's information. Specifically, how does summary generate a count for the number of elements in each level of a factor. I can use ...
40
votes
2answers
753 views

FAQ markup to R data structure

I'm reading the R FAQ source in texinfo, and thinking that it would be easier to manage and extend if it was parsed as an R structure. There are several existing examples related to this: the ...
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 [ ...
10
votes
2answers
761 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 ...
7
votes
3answers
4k 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 ...
13
votes
3answers
3k views

R round to nearest .5 or .1

I have a data set of stock prices that have already been rounded to 2 decimal places (1234.56). I am now trying to round to a specific value which is different for each stock. Here are some ...
9
votes
1answer
4k 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.
0
votes
1answer
96 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 ...
31
votes
5answers
17k 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)
8
votes
1answer
3k views

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 ...
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 ...
4
votes
4answers
1k views

Arithmetic operations on R factors

I have an R dataframe and I'm trying to subtract one column from another. I extract the columns using the $ operator but the class of the columns is 'factor' and R won't perform arithmetic operations ...
5
votes
3answers
2k views

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 ...
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, ...
17
votes
4answers
2k 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 ...
2
votes
3answers
2k 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 ...
4
votes
3answers
832 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 ...
10
votes
7answers
14k 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?
16
votes
2answers
1k 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 ...
298
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 ...
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 ...
24
votes
3answers
5k views

R: what are Slots?

Does anyone know what a slot is in R? I did not find the explanation of its meaning. I get a recursive definition: "Slot function returns or set information about the individual slots of an objects" ...
37
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 ...
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 ...
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 ...
6
votes
5answers
1k views

Numeric comparison difficulty in R

I'm trying to compare two numbers in R as a part of a if-statement condition: (a-b) >= 0.5 In this particular instance, a = 0.58 and b = 0.08... and yet (a-b) >= 0.5 is false. I'm aware of ...
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 ...
10
votes
1answer
949 views

Generate multiple graphics from within an R function

I'd like to spawn several graphics windows from within a function in R using ggplot graphics... testf <- function(a, b) { devAskNewPage(TRUE) qplot(a, b); # grid.newpage(recording = TRUE) ...
9
votes
4answers
489 views

Where can I find useful R tutorials with various implementations?

I'm using R language and the manuals on the R site are really informative. However, I'd like to see some more examples and implementations with R which can help me develop my knowledge faster. Any ...
9
votes
3answers
2k views

View the source of an R package

Is there an easy way to view the source of an R package (or a method in a package), from within the interactive environment?
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 > ...
98
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 ...
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 ...
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 ...
169
votes
9answers
111k 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 = ...
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 ...