Installation


To install the mmSAR package directly within R :

install.packages("mmSAR", repos="http://R-Forge.R-project.org")

You need an internet connexion and administrators privileges under linux to do this.

Whenever you do not have admin rights on the system you are running R, you can install the package locally.

Assuming you own a directly located at 'myPackagesDirectoryPath', you can install the mmSAR package locally in the 'myPackagesDirectory' directory using the 'lib' argument of the 'install.packages' function :

install.packages("mmSAR", repos="http://R-Forge.R-project.org", lib="myPackagesDirectoryPath")

After, when loading the mmSAR package, use the 'lib.loc' argument of the 'library' function to find the package :

library(mmSAR, lib.loc="myPackagesDirectoryPath")