Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Slightly off-topic question, but I was wondering if anybody could tell me when and how the cor() function was improved recently? It is much, much faster than I remember and is now comparable in speed to the rcorr function in HMisc package, which was my alternative correlation function for large matrices.

Thanks for all the suggestions: After some investigation, the difference in speed is due to using the use="pairwise" flag rather than an algorithmic change. There is ~8 fold difference in speed difference when using this option.

The speed for cor() on R from version 2.4 - 2.13 is comparable.

Thanks,

Iain

share|improve this question
2  
Could you provide a timing comparison by running the same calculations on the current version of R and one of the previous versions (all of which are available at cran.r-project.org )? – Josh O'Brien Oct 17 '11 at 16:34
1  
Did anything else change about your system? More memory, etc. – John Colby Oct 17 '11 at 16:57
1  
Is there any chance that you remember it wrong? Data was different (size, type)? Hardware was different (like @JohnColby said)? I can't believe that without any information this question earn four up-votes. – Marek Oct 17 '11 at 20:53

2 Answers

up vote 5 down vote accepted

http://cran.r-project.org/src/base/NEWS.html has a high level summary of recent changes, and explanations of their relevance. This is sometimes useful to pick up related changes in other functions that might affect what you're doing. A quick find for cor() only shows a couple things, however:

2.13.0

The rank-correlation methods for cor() and cov() with use = "complete.obs" computed the ranks before removing missing values, whereas the documentation implied incomplete cases were removed first. (https://bugs.R-project.org/bugzilla3/show_bug.cgi?id=14488PR#14488)

2.11.0

cor() and cov() now test for misuse with non-numeric arguments, such as the non-bug report https://bugs.R-project.org/bugzilla3/show_bug.cgi?id=14207PR#14207.

share|improve this answer
Thanks for the link to the high level summary, very useful. – Iain Oct 18 '11 at 12:00

Hard to say without knowing what version you're running, but it looks like there are some substantial changes coming in 2.14, and only minor changes between 2.13 and previous versions back to at least 2.10. Compare these to see the current changes coming in 2.14:

2.13 code: https://svn.r-project.org/R/branches/R-2-13-branch/src/main/cov.c

2.14 code: https://svn.r-project.org/R/branches/R-2-14-branch/src/main/cov.c

share|improve this answer
Thanks for the links, there was very little difference between the different versions – Iain Oct 18 '11 at 12:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.