I ended up using RKWard frontend. I didn't have any particular reason for picking it amongst the others but in retrospect it wasn't that bad a choice.
In this post I'm going to show you some tricks I learned and share some resources on R. Reading it won't make you an R guru but will probably get you on the right way should you decide to become one.
Very Basics of R
As mentioned in the introduction R is both an environment and a language. It has some goodies that are particularly useful for statistics. You will find an interesting little language inspired by Scheme in the core.The language is meant to be programmed mostly in functional manner. It does have some OOP and imperative characteristics, however. I guess functional approach is somewhat natural for crunching statistics.
The language provides various types including scalars, vectors, martices and such [1]. Interestingly lists in R are actually associative arrays (think "dictionary" in Python).
I found it really cool that the language provides vectors and matrices by default. The syntax it provides for manipulation is somewhat awesome too. Consider this code:
Note how imaginative particularly index selectors are! I really like this aspect of the language.
Plotting
It's ridiculously easy to plot something in R. Just consider following examples:See R Graph Gallery for more inspiration.