Connect to MySQL from R
I initially attempted to install via: sudo apt-get build-dep r-cran-rmysql But I received an error trying to access MySQL from R: Error in library(RMySQL) : there is no package called ‘RMySQL’ colin@mikrojenkins:~/mikroR$ cat installer.r #!/usr/bin/r install.packages(‘RMySQL’,type=’source’, repos=’http://cran.cnr.berkeley.edu/’) *It hosed on me if I didn’t specify a repos arg* Once RMySQL was installed, I was able[…]