Please, speak your mind. I'm a newb when it comes to R.
I am learning R to impress a statistician at the local university. It might lead to an internship.
I have also parsed the CRUTEM5 data with R, using the basics like variance, covariance, and standard deviation. There is a positive trend.
I've been told that C++ programmers are in demand because they can write portions of their code in DLLs, hopefully speeding up the data pipeline. We'll see. So far, for fun, I timed the sum() function in R, and the functions in the DLL as well. The GPU version is 10x slower than the CPU version, which itself is 10x slower than the R version. Sum() isn't exactly the meatiest of algorithms, so more effort must be put into coming up with more meaty algorithms, whatever those might be.