R is an open source programming language and software environment for statistical computing and graphics. It is an implementation of the S programming language combined with lexical scoping semantics inspired by Scheme. R was created by Ross Ihaka and Robert Gentleman and is now developed by the R ...
116
votes
6answers
4k 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 ...
55
votes
4answers
6k 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 ...
37
votes
4answers
3k 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 most come from *apply (tapply, sapply ...
22
votes
3answers
6k 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 ...
27
votes
5answers
2k views
What is your favorite R debugging trick? [closed]
I've recently started using browser() in function definitions for debugging (a great tool!). I feel like print() debugging has been slowing my learning curve of built-in debugging tools. What are some ...
61
votes
17answers
21k views
Books for learning the R language [closed]
I'm looking for resources to start exploring the R language (as was recommended in my question on Statistical Tools). I know there are some suggestions for basic online tutorials in this thread, but ...
3
votes
1answer
193 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:
...
57
votes
19answers
9k views
Expert R users, what's in your .Rprofile?
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 ...
63
votes
20answers
4k views
How to search for “R” materials?
"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 ...
15
votes
4answers
3k 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 ...
82
votes
11answers
10k 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 ...
48
votes
4answers
19k 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
...
56
votes
12answers
8k 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 ...
72
votes
9answers
45k 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 = ...
6
votes
2answers
8k 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 ...
42
votes
6answers
3k views
Tools for making latex tables in R
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 ...
18
votes
1answer
475 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. ...
9
votes
8answers
4k views
Best IDE / TextEditor for R [closed]
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?
28
votes
17answers
15k 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?
10
votes
6answers
2k views
How do you combine “Revision Control” with “WorkFlow” for R?
I remember coming across R users writing that they use "Revision control" (e.g: "Source control"), and I am curious to know: How do you combine "Revision control" with your statistical analysis ...
10
votes
3answers
3k 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 ...
15
votes
11answers
6k views
R for finance tutorials and resources
What resources (websites, books, mailing lists, forums, etc.) can be recommended about programming in R for use of financial data?
27
votes
22answers
1k views
What's the biggest R-gotcha you've run across?
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 ...
32
votes
13answers
4k 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 ...
7
votes
11answers
2k 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 ...
17
votes
15answers
9k views
Recommendations for Windows text editor for R
Any recommendations for a good Windows text editor for R?
I've been using Tinn-R, and it's been working reasonably well, but am curious to know what else people use.
10
votes
1answer
283 views
Loading many files at once?
So let's say I have a directory with a bunch of .rdata files
file_names=as.list(dir(pattern="stock_*"))
[[1]]
[1] "stock_1.rdata"
[[2]]
[1] "stock_2.rdata"
Now, how do I load these files with a ...
13
votes
6answers
2k views
Forcing garbage collection to run in R with the gc() command
Periodically I program sloppily. Ok, I program sloppily all the time, but sometimes that catches up with me in the form of out of memory errors. I start exercising a little discipline in deleting ...
9
votes
2answers
244 views
In R, how can I check if two variable names reference the same underlying object?
For example:
A <- 1:10
B <- A
Both A and B reference the same underlying vector.
Before I plow off and implement something in C...
Is there a function in R which can test whether two ...
0
votes
3answers
528 views
What's the way to learn R? [closed]
Possible Duplicate:
Learning R. Where does one Start?
Considering zero prior programming skills. Any ebooks and tuts welcome.
Thanks.
59
votes
4answers
8k 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 ...
26
votes
4answers
899 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 ...
18
votes
5answers
2k views
R: speeding up “group by” operations
I have a simulation that has a huge aggregate and combine step right in the middle. I prototyped this process using plyr's ddply() function which works great for a huge percentage of my needs. But I ...
43
votes
9answers
6k 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 ...
16
votes
6answers
2k views
Debugging tools for the R language
After learning R about 9 months ago, I am finally graduating from debugging by using print() statements every other line. I am now a pretty constant user of browser() and debug(). I have recently ...
17
votes
5answers
804 views
C for R programmers - recommended resources/approaches once past the basics
I would like to improve my C skills in order to be more competent at converting R code to C where this would be useful. What hints do people have that will help me on my way?
Background: I followed ...
21
votes
3answers
5k views
Exception handling in R
Does anyone have examples/tutorials of exception handling in R? The official documentation is very terse.
17
votes
7answers
1k views
version control for one-man project using eclipse?
I'm currently working on several projects on my own (at least the developing part is done only by me :). Using Eclipse with different Java, R, SQL and other source files I'm wondering what version ...
6
votes
6answers
3k views
How to separate two plots in R?
Whenever I run this code , the first plot would simply overwrite the previous one. Isnt there a way in R to separate to get two plots ?
plot(pc)
title(main='abc',xlab='xx',ylab='yy')
plot(pcs)
...
4
votes
3answers
440 views
Loop in R loading files
I have been wondering if anybody knows a way to create a loop that loads files/databases in R.
Say i have some files like that: data1.csv, data2.csv,..., data100.csv.
In some programming languages ...
11
votes
5answers
2k views
What ways are there to edit a function in R?
Let's say we have the following function:
foo <- function(x)
{
line1 <- x
line2 <- 0
line3 <- line1 + line2
return(line3)
}
And that we want to change the second line to ...
4
votes
4answers
464 views
Scoping and functions in R 2.11.1 : What's going wrong?
This question comes from a range of other questions that all deal with essentially the same problem. For some strange reason, using a function within another function sometimes fails in the sense that ...
2
votes
8answers
3k 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'
...
2
votes
3answers
283 views
R: turning list items into objects
I have a list of objects that I've created manually, like this:
rand1 <- rnorm(1e3)
rand2 <- rnorm(1e6)
myObjects <- NULL
myObjects[[1]] <-rand1
myObjects[[2]] <-rand2
...
13
votes
1answer
333 views
When should I use the := operator in data.table?
data.table objects now have a := operator. What makes this operator different from all other assignment operators? Also, what are its uses, how much faster is it, and when should it be avoided?
8
votes
1answer
1k 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:
...
2
votes
3answers
953 views
splitting a continuous variable into equal sized groups using R
I need to split/divide up a continuous variable into 3 equal sized groups.
Example data frame
> anim <- c(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15)
> wt <- ...
0
votes
4answers
364 views
Data cleaning in Excel sheets using R
I have data in excel sheets, i need a way to clean it. i mean i would like remove inconsistent values , like Branch name is specified as (Computer Science and Engineering , C.S.E ,C.S , Computer ...
37
votes
10answers
3k 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 ...
28
votes
6answers
8k 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 ...