Tagged Questions

R is a free, open source programming language and software environment for statistical computing and graphics. This tag is unrelated to the Android R.java file: see the r.java-file tag.

learn more… | top users | synonyms (1)

147
votes
15answers
7k views

What statistics should a programmer (or computer scientist) know?

I'm a programmer with a decent background in math and computer science. I've studied computability, graph theory, linear algebra, abstract algebra, algorithms, and a little probability and statistics ...
88
votes
35answers
10k views

What is the most useful R trick? [closed]

In order to share some more tips and tricks for R, what is your single-most useful feature or trick? Clever vectorization? Data input/output? Visualization and graphics? Statistical analysis? ...
87
votes
6answers
2k 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 ...
70
votes
9answers
8k 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 ...
63
votes
11answers
15k views

What can MATLAB do that R cannot do?

I often hear people complain how expensive MATLAB licenses are. Then I wonder why they don't just use Octave or R. But is the latter right? Can you use R to replace MATLAB?
61
votes
15answers
4k views

Most underused data visualization [closed]

Histograms and scatterplots are great methods of visualizing data and the relationship between variables, but recently I have been wondering about what visualization techniques I am missing. What do ...
60
votes
22answers
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 ...
55
votes
9answers
32k 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 = ...
55
votes
19answers
7k 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 ...
54
votes
1answer
1k views

Arbitrary sections in roxygen docs

The way Roxygen seems to work is that the first line is the \title, everything else is in the \details, and then any @foo directives handle those things. But R documentation is richer than that. I can ...
54
votes
12answers
7k views

Workflow for statistical analysis and report writing

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 ...
54
votes
17answers
17k 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 ...
52
votes
19answers
7k views

What can be done in R that can't be done with Python/Numpy/SciPy

I've been recently wondering about the over-proliferation of DSLs like R - and thinking whether this is good or bad. Specifically, I wonder what right has R as a stand-alone language and environment? ...
46
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 ...
42
votes
19answers
5k views

Suitable functional language for scientific/statistical computing?

I use mostly R and C for statistics-related tasks. Recently I have been dealing with large datasets, typically 1e7-1e8 observations, and 100 features. They seem too big for R too handle, and the ...
41
votes
4answers
5k 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 ...
41
votes
17answers
3k views

Psychology researcher wants to learn new language [closed]

I'm currently considering R, MATLAB, or Python, but I'm open to other options. Could you help me pick the best language for my needs? Here are the criteria I have in mind (not in order): Simple to ...
40
votes
8answers
5k 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
4answers
1k views

Where can I learn to how to write C code to speed up slow R functions?

What's the best resource for learning how to write C code for use with R? I know about the system and foreign language interfaces section of R extensions, but I find it pretty hard going. What are ...
38
votes
6answers
6k views

When to choose R vs. SciPy?

What are some advantages and disadvantages to doing statistical analyses in SciPy vs. R? They seem to have been designed with opposite philosophies (plain old library vs. DSL). What are some rules ...
36
votes
9answers
2k views

Is R “that bad” that it should be rewritten from scratch?

In the past week I've been following a discussion where Ross Ihaka wrote: I’ve been worried for some time that R isn’t going to provide the base that we’re going to need for statistical ...
35
votes
6answers
837 views

When does it pay off to use S4 methods in R programming

I program regularly in R in a professional context, and I write packages for clients or co-workers as well. Some of the programmers here have a Java background and insist on doing everything the ...
35
votes
7answers
6k 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 ...
34
votes
4answers
2k 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 ...
34
votes
5answers
4k views

Painless way to install a new version of R (on Windows)?

Andrew Gelman recently lamented the lack of an easy upgrade process for R (probably more relevant on Windows that Linux). Does anyone have a good trick for doing the upgrade, from installing the ...
34
votes
3answers
14k 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 ...
33
votes
0answers
774 views

Interpolate product attributes

I have a set of data from a set of discrete choice tasks which included two alternatives with three attributes (brand, price, performance). From this data, I have taken 1000 draws from the posterior ...
33
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 ...
32
votes
6answers
2k 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 ...
31
votes
1answer
727 views

How can a test script inform R CMD check that it should emit a custom message?

I'm writing a R package (delftfews) here at office. we are using svUnit for unit testing. our process for describing new functionality: we define new unit tests, initially marked as DEACTIVATED; ...
31
votes
6answers
8k views

How to Correctly Use Lists in R?

Brief background: Many (most?) modern programming languages in widespread use have at least a handful of ADTs [abstract data type] in common, in particular, string (a (sequence comprised of ...
30
votes
13answers
2k 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 ...
30
votes
2answers
8k views

Rotating and spacing axis labels in ggplot2

I have a plot where the x-axis is a factor whose labels are long. While probably not an ideal visualization, for now I'd like to simply rotate these labels to be vertical. I've figured this part out ...
28
votes
4answers
6k views

List of ggplot2 options?

After some research I found the way to prevent an uninformative legend from displaying ... + opts(legend.position = "none") Where can I find all the available "opts" for ggplot2?
27
votes
4answers
597 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, ...
27
votes
16answers
3k views

Datasets for Running Statistical Analysis on

What datasets exist out on the internet that I can run statistical analysis on?
26
votes
4answers
2k 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 ...
25
votes
5answers
544 views

Proposing feature requests to the R Core Team

What's the recommended way of contacting the R Core Team in order to propose feature requests? By "feature requests" I do not simply mean firing something like "I'd like to see functionality XY doing ...
25
votes
4answers
2k views

Learning functional programming with R [closed]

I have recently studied functional programming with Haskell and Clojure and found it has also improved my R coding practices. For example I've better grasped the possibilities of usign lists and apply ...
25
votes
6answers
11k 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 less commands. Also, I ...
25
votes
8answers
923 views

Trimming a huge (3.5 GB) csv file to read into R

So I've got a data file (semicolon separated) that has a lot of detail and incomplete rows (leading Access and SQL to choke). It's county level data set broken into segments, sub-segments, and ...
25
votes
10answers
2k views

Essential skills of a Data Scientist

What are the relevant skills in the arsenal of a Data Scientist? With new technologies coming in every day, how does one pick and choose the essentials? A few ideas germane to this discussion: ...
25
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 ...
25
votes
19answers
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 ...
25
votes
17answers
12k 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?
24
votes
4answers
588 views

Structure of an R course for beginners

I realize that this is a question that will probably not have a single best answer, and that it might be closed as such, but I think that this might get some very useful answers so maybe it can be ...
24
votes
17answers
1k views

slick one-lineRs [closed]

What's your favorite one-liner in R? Include a short companion example, and limit to one tip per post, please. Note, ; is cheating. Example: calculate x[i] / x[i-1] for a vector x, x <- 1:10 ...
24
votes
4answers
651 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 ...
24
votes
8answers
2k views

large amount of data in many text files - how to process?

I have large amounts of data (a few terabytes) and accumulating... They are contained in many tab-delimited flat text files (each about 30MB). Most of the task involves reading the data and ...
24
votes
7answers
15k views

Append an object to a list in R?

If I have some R list mylist, you can append an item obj to it like so: mylist[[length(mylist)+1]] <- obj But surely there is some more compact way. When I was new at R, I tried writing ...

1 2 3 4 5 191