I'm just starting to learn and use R (and BioConductor) for quite a fair chunk of analysis on my PhD. I'd definitely recommend R if you need to do any major stats/maths work.
However, when setting things up on Ubuntu, I came into a few problems here and there, so I thought I'd just share the workarounds with you all in case someone else starts to struggle...
The version of Ubuntu that I'm using is the current Beta release of 7.04 (Feisty Fawn), but this should also be applicable to older versions of Ubuntu and possibly Debian Linux.
First up, run these commands in a terminal:
sudo apt-get install refblas3 refblas3-dev
sudo apt-get install r-base-core r-base-dev r-bioc-repostools r-recommended
This will then install the R base packages and some of the BioConductor packages, along with the gcc and fortran compilers and some other libraries that will be required for the next step.
R
Now at the R prompt, type the following…
biocLite()
Now sit back for a few minutes while your system configures the rest of a basic install of BioConductor for you! :)
If there are anymore BioConductor packages that you would like installed, you can reuse the 'biocLite()' command as follows:
Where "pkg1" and "pkg2" are the names of the packages you would like to install. Further details on this can be found on the BioConductor Install page.




News Feed
Do you know if R for Unbutu has an interface like the one for Windows? I'm curious because I'm a statistician and I write long scripts in R so I can save them and review them later. This method only seems to get R running in the terminal window where I cannot save my scripts. Thanks for the helpful information though!