Installing and Using R-Packages

This blog entry is just a reminder for myself, as I frequently forget how to install and load packages under R statistical language. It’s simple - e.g. to install and load package plotrix, use the following commands at your R prompt:

install.package( "plotrix" )
library( "plotrix" )

Short a fast this entry is…
iss