I had to reinstall R and all packages after the upgrade. To make this step easy, save the installed packages in a file before upgrading to El Capitan. The packages are not actually removed, they are located in /Library/Frameworks/R.Framework/Versions/3.2/Resources/library (3.2 = version), so you can still find them, but some of them may be in your user library.
To save the package list:
my.packages = library () [[2]] write.table (my.packages, file = "my.packages.txt", row.names = F, col.names = T)
Then update, reinstall from R-3.2.2.pkg (or the last one), then read the text file in my.packages and use install.packages (my.packages, repos = ' http: //cran.us.r-project. org ') and you should be good to go.
source share