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.
14
votes
2answers
25k views
Controlling digits in R
There is an option in R to get control over digit display. For example:
options(digits=10)
is supposed to give the calculation results in 10 digits till the end of R session. In the help file of R, ...
29
votes
7answers
1k views
In R, what exactly is the problem with having variables with the same name as base R functions?
It seems to be generally considered poor programming practise to use variable names that have functions in base R with the same name.
For example, it is tempting to write:
data <- data.frame(...)
...
10
votes
1answer
2k views
Merge many data frames from csv files
I'd like to merge a bunch of data frames together (because it seems many operations are easier if you're only dealing w/ one, but correct me if I'm wrong).
Currently I have one data frame like this:
...
8
votes
3answers
5k views
Using MySQL in R for Windows
How to use MySQL in R (statistic language) for Windows (7)?
There is no problems then using linux:
install.packages('RMySQL')
library(RMySQL)
...
But I found no such package for Windows on CRAN. ...
10
votes
2answers
407 views
Setting Function Defaults R on a Project Specific Basis
Commonly, I use the same function settings. I'm wondering if there is a method, other than having a new object in the path that is essentially a wrapper for the function, to set default arguments. For ...
9
votes
2answers
2k views
In R,how do I change the color value of just one value in ggplot2's scale_fill_brewer?
I have a R dataframe (df) which I am plotting as a bar graph in ggplot2, and coloring based on a column in the dataframe (df$type). Right now, I am using the default coloring pattern ...
4
votes
6answers
699 views
faster way to create variable that aggregates a column by id
Is there a faster way to do this? I guess this is unnecessary slow and that a task like this can be accomplished with base functions.
df <- ddply(df, "id", function(x) cbind(x, perc.total = ...
3
votes
3answers
1k views
Standard way to remove multiple elements from a dataframe
What is the best way to remove multiple elements from a dataframe? In my case I have all the days of the month in a data frame and and want to remove several days. Something like below works fine ...
8
votes
4answers
946 views
Limiting variable scope
I'm trying to write a function, which limits the scope of R variables. For example,
source("LimitScope.R")
y = 0
f = function(){
#Raises an error as y is a global variable
x = y
}
I thought ...
7
votes
2answers
309 views
if/else constructs inside and outside functions
When I look at R functions I often find the following structure:
f <- function(exp=T) {
if (exp)
a <- 1
else
a <- 2
}
f()
f(F)
This will run without error. But executing the ...
7
votes
1answer
3k views
How to change the order of facet labels in ggplot (custom facet wrap labels)
Hi I plotted a facet plot using ggplot in R and here is the plot
The problem I have is, The facets(labels) are sorted alphabetically (Ex: E1, E10, E11,E13, E2, E3, I1, I10, I2) but I need them to ...
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 ...
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 ...
39
votes
6answers
13k views
Developing Geographic Thematic Maps with R
There are clearly a number of packages in R for all sorts of spatial analysis. That can by seen in the CRAN Task View: Analysis of Spatial Data. These packages are numerous and diverse, but all I want ...
25
votes
3answers
2k views
Sources on S4 objects, methods and programming in R
As I'm often confronted with situations where S4 programming is needed to keep an overview, I've collected quite some sources on S4 objects, methods and programming. I've listed them here as a ...
21
votes
1answer
1k views
How to develop a package in R?
I have written some functions in R using S4 classes.
Now I want to build an R package out of these functions.
How should I proceed? Is there anything that I should do differently because I have ...
29
votes
4answers
2k views
Coding practice in R : what are the advantages and disadvantages of different styles?
The recent questions regarding the use of require versus :: raised the question about which programming styles are used when programming in R, and what their advantages/disadvantages are. Browsing ...
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 ...
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, ...
36
votes
5answers
17k views
Plot correlation matrix into a graph
I have a matrix with some correlation values. Now I want to plot that in a graph that looks more or less like that:
How can I achieve that?
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,
...
40
votes
3answers
28k views
Write lines of text to a file in R
In the R scripting language, how do I write lines of text, e.g. the following two lines
Hello
World
to a file named "output.txt"?
31
votes
9answers
30k views
Convert data.frame columns from factors to characters
I have a data frame. Let's call him bob:
> head(bob)
phenotype exclusion
GSM399350 3- 4- 8- 25- 44+ 11b- 11c- 19- NK1.1- Gr1- TER119-
GSM399351 3- 4- 8- ...
34
votes
1answer
8k views
R.exe, Rcmd.exe, Rscript.exe and Rterm.exe: what's the difference?
I'm struggling with the different R executables. What exactly is the difference between R.exe (with or without CMD BATCH option), Rcmd.exe, Rscript.exe and Rterm.exe when running command line in a ...
28
votes
4answers
882 views
R self reference
In R I find myself doing something like this a lot:
adataframe[adataframe$col==something]<-adataframe[adataframe$col==something)]+1
This way is kind of long and tedious. Is there some way for ...
16
votes
5answers
5k views
Linear Regression and group by in R
I wan to do a linear regression in R using the lm() function. My data is an annual time series with one field for year (22 years) and another for state (50 states). I want to fit a regression for each ...
11
votes
12answers
3k views
What are some good books, web resources, and projects for learning R?
I have a book called Statistics for Computer Scientists as well as my engineering statistics textbook, so I'm thinking about using various problems and examples in those to learn R, which is probably ...
37
votes
8answers
31k views
What's the best way to use R scripts on the command line?
It's very convenient to have R scripts for doing simple plots from the command line. However, running R from bash scripts is not convenient at all. The ideal might be something like
#!/path/to/R
...
23
votes
5answers
8k views
Does an R compiler exist?
I'm wondering about the best way to deploy R. Matlab has the "matlab compiler" (MCR). There has been discussion about something similar in the past for R that would compile R into C or C++. Does ...
6
votes
3answers
12k views
How to use Outlier Tests in R Code
As part of my data analysis workflow, I want to test for outliers, and then do my further calculation with and without those outliers.
I've found the outlier package, which has various tests, but ...
24
votes
5answers
2k views
R: Display a time clock in the R command line
I wonder if there is a way to display the current time in the R command line, like in MS DOS, we can use "Prompt $T $P$G" to include the time clock in every prompt line.
Something like ...
19
votes
4answers
1k views
Proper/fastest way to reshape a data.table
I have a data table in R:
library(data.table)
set.seed(1234)
DT <- data.table(x=rep(c(1,2,3),each=4), y=c("A","B"), v=sample(1:100,12))
DT
x y v
[1,] 1 A 12
[2,] 1 B 62
[3,] 1 A 60
[4,] ...
9
votes
7answers
943 views
Debugging lapply/sapply calls
Code written using lapply and friends is usually easier on the eyes and more Rish than loops. I love lapply just as much as the next guy, but how do I debug it when things go wrong? For example:
...
14
votes
2answers
7k views
ggplot: showing % instead of counts in charts of categorical variables
I'm plotting a categorical variable and instead of showing the counts for each category value,
I'm looking for a way to get ggplot to display the percentage of values in that category. Of course, it ...
9
votes
4answers
16k views
R memory management / cannot allocate vector of size n Mb
I am running into issues trying to use large objects in R. For example:
> memory.limit(4000)
> a = matrix(NA, 1500000, 60)
> a = matrix(NA, 2500000, 60)
> a = matrix(NA, 3500000, 60)
...
20
votes
3answers
11k views
How do I replace NA values with zeros in R?
I have a data.frame and some columns have NA values. I want to replace the NAs with zeros. How I do this?
13
votes
2answers
938 views
How to change points and add a regression to a cloudplot (using R)?
To make clear what I'm asking I've created an easy example. Step one is to create some data:
gender <- factor(rep(c(1, 2), c(43, 41)), levels = c(1, 2),labels = c("male", "female"))
numberofdrugs ...
7
votes
4answers
11k views
Compare two data.frames to find the rows in data.frame 1 that are not present in data.frame 2
I have the following 2 data.frames:
a1 <- data.frame(a = 1:5, b=letters[1:5])
a2 <- data.frame(a = 1:3, b=letters[1:3])
I want to find the row a1 has that a2 doesn't.
Is there a built in ...
14
votes
4answers
529 views
Trouble converting long list of data.frames (~1 million) to single data.frame using do.call and ldply
I know there are many questions here in SO about ways to convert a list of data.frames to a single data.frame using do.call or ldply, but this questions is about understanding the inner workings of ...
8
votes
3answers
4k views
Finding local maxima and minima
I'm looking for a computationally efficient way to find local maxima/minima for a large list of numbers in R.
Hopefully without for loops...
For example, if I have a datafile like 1 2 3 2 1 1 2 1, I ...
19
votes
6answers
1k views
Automatically expanding an R factor into a collection of 1/0 indicator variables for every factor level
I have an R data frame containing a factor that I want to "expand" so that for each factor level, there is an associated column in a new data frame, which contains a 1/0 indicator. E.g., suppose I ...
14
votes
6answers
10k views
How to read a csv file in R where some numbers contain commas?
I have a large csv file with a mix of character and numeric columns. Some of the numerical values are expressed as strings with commas. e.g., "1,513" instead of 1513. What is the simplest way to read ...
12
votes
5answers
1k views
function with multiple outputs [duplicate]
Is there a way to output e.g. 2 objects without using list()?
my.fun=function(vector, index)
{
a=fun.a(vector, index)
b=fun.b(vector, index)
output=list(a,b)
}
Or ...
8
votes
6answers
5k views
R - image of a pixel matrix?
How would you you make an image from a matrix in R?
Matrix values would correspond to pixel intensity on image (although I am just interested in 0,1 values white or black at the moment.), while ...
15
votes
7answers
5k views
How do I sort one vector based on values of another
I have a vector x, that I would like to sort based on the order of values in vector y. The two vectors are not of the same length.
x <- c(2, 2, 3, 4, 1, 4, 4, 3, 3)
y <- c(4, 2, 1, 3)
The ...
13
votes
3answers
6k views
Parsing command line arguments in R scripts
Is there any convenient way to automatically parse command line arguments passed to R scripts?
Something like perl's Getopt::Long?
10
votes
2answers
1k views
cbind a df with an empty df (cbind.fill?)
I think I'm looking for an analog of rbind.fill (in Hadley's plyr package) for cbind. I looked, but there is no cbind.fill.
What I want to do is the following:
#set these just for this example
...
10
votes
5answers
3k views
Which R time/date class and package to use? [closed]
I have a limited time series exposure in R. So, I wonder which time/date class (and associated package) would be most appropriate to start with.
Among the plethora of packages available at CRAN ...
8
votes
6answers
12k views
R language: how to split a data frame
I want to split a data frame into several smaller ones. This looks like a very trivial question, however I cannot find a solution from web search.
Can anyone help?
Also, do you have any ...
13
votes
4answers
1k views
Is there a R function that applies a function to each pair of columns?
I often need to apply a function to each pair of columns in a dataframe/matrix and return the results in a matrix. Now I always write a loop to do this. For instance, to make a matrix containing the ...

