I am happy to hear that since I have about 6 months to learn it. Which is how long I planned to take at a minimum.
You mean R? I learned it effectively within a few days of starting my job. I had a computer science background, though, so the structural programming was intuitive. It just takes getting used to the syntax. It probably took me some 6 months to finally get out of my comfort zone and learn how to use the vast faculties that R has, such as the
apply family of functions (instead of loops). Of course, reading books like
Data Manipulating Using R and such (and online documents or
The R Book) really helped me start to understand the
methodology to R programming. As all R programmers should know, it comes down to
vectorization. That is not a concept people pick up in other languages, really. It is what I think makes R one of the best tools for dealing with data, because data can often be thought of and managed as a vector of some sort (SAS has IMS and Matlab deals with matrices as a basic element, so those are somewhat closer to the concept; they still don't implement things as robustly as I think R does).
With the right tools (i.e., books) and this forum, you should have no problem picking up R.