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 days of R.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
|||||||||||||||||
|
|
[Hadley pointed this out in a comment.] When using a sequence as an index for iteration, it's better to use the Here I create a vector and both approaches return the same thing:
Now make the vector
This can cause some confusion in a loop:
|
|||
|
|
The automatic creation of factors when you load data. You unthinkingly treat a column in a data frame as characters, and this works well until you do something like trying to change a value to one that isn't a level. This will generate a warning but leave your data frame with NA's in it ... When something goes unexpectedly wrong in your R script, check that factors aren't to blame. |
|||||||||||
|
|
Forgetting the drop=FALSE argument in subsetting matrices down to single dimension and thereby dropping the object class as well:
|
|||
|
|
|
First, let me say that I understand fundamental problems of representing numbers in a binary system. Nevertheless, one problem that I think could be easily improved is the representation of numbers when the decimal value is beyond R's typical scope of presentation.
I don't mind if the result is represented as an integer when it really can be represented as an integer. For example, if the value really was 1020 then printing that for x would be fine. But something as simple as 1020.0 in this case when printing x would have made it more obvious that the value was not an integer and not representable as one. R should default to some kind of indication when there is an extremely small decimal component that isn't presented. |
|||||||||||||||
|
|
Always test what happens when you have an NA! One thing that I always need to pay careful attention to (after many painful experiences) is NA values. R functions are easy to use, but no manner of programming will overcome issues with your data. For instance, any net vector operation with an NA is equal to NA. This is "surprising" on the face of it:
This gets extrapolated out into other higher-level functions. In other words, missing values frequently have as much importance as measured values by default. Many functions have na.rm=TRUE/FALSE defaults; it's worth spending some time deciding how to interpret these default settings. Edit 1: Marek makes a great point. NA values can also cause confusing behavior in indexes. For instance:
This is also true when you're trying to create a conditional expression (for an if statement):
When these NA values end up as your vector indexes, many unexpected things can follow. This is all good behavior for R, because it means that you have to be careful with missing values. But it can cause major headaches at the beginning. |
|||||
|
|
It can be annoying to have to allow for combinations of
However the safest way to test any of these trouble-makers is:
|
|||||
|
|
Forgetting that
|
|||||
|
|
Math on integers is subtly different from doubles (and sometimes complex is weird too) UPDATE They fixed some things in R 2.15
|
||||
|
|
|
The
|
|||||||||
|
|
Reading in data can be more problematic than you may think. Today I found that if you use read.csv(), if a line in the .csv file is blank, read.csv() automatically skips it. This makes sense for most applications, but if you're automatically extracting data from (for example) row 27 from several thousand files, and some of the preceding rows may or may not be blank, if you're not careful things can go horribly wrong. I now use
When you're importing data, check that you're doing what you actually think you're doing again and again and again... |
|||
|
|
|
I'm surprised that no one mention this but:
Example:
[edit] |
||||
|
|
|
|||||||
|
|
The tricky behaviour of the One of my continuos errors is comparing a set of floating point numbers. I have a CSV like:
Reading the file and trying to subset the data sometimes works, sometimes fails - of course, due to falling into the pits of the floating point trap again and again. At first, the data contains only integer values, then later on it always transforms into real values, you know the story. Comparing should be done with the Yeah, cool, but
The solution is using
How many times had I got to read the |
||||
|
|
|
This one hurt so much that I spent hours adding comments to a bug-report. I didn't get my wish, but at least the next version of R will generate an error.
|
|||||||||
|
|
For instance, the number 3.14 is a numerical constant, but the expressions +3.14 and -3.14 are calls to the functions
See Section 13.2 in John Chambers book Software for Data Analysis - Programming with R |
|||
|
|
Working with lists, there are a couple of unintuitive things: Of course, the difference between List creation:
So, how to insert NULL into a list?
Finally some advanced stuff like indexing through a nested list:
|
|||||||||
|
|
Zero-length vectors have some quirks:
|
|||
|
|
Coming from compiled language and Matlab, I've gotten occasionally confused about a fundamental aspect of functions in functional languages: they have to be defined before they're used! It's not enough just for them to be parsed by the R interpreter. This mostly rears its head when you use nested functions. In Matlab you can do:
If you try to do the same thing in R, you have to put the nested function first, or you get an error! Just because you've defined the function, it's not in the namespace until it's assigned to a variable! On the other hand, the function can refer to a variable that has not been defined yet.
|
|||
|
|
Mine from today: qnorm() takes Probabilities and pnorm() takes Quantiles. |
|||
|
automatic repeating of vectors used as indices:
|
|||||||
|
|
For me it is the counter intuitive way in which when you export a data.frame to a text file using
I also posted this question in SO and was suggested as an answer to this Q by @BenBolker. |
|||
|
|
|
Partial matching in the
The Partial matching also affects
|
|||||
|
|
One of the big confusion in R is that
For more info see: drop = TRUE doesn't drop factor levels in data.frame while in vector it does |
|||
|
|
|
The
Using
This makes the |
|||
|
|