![]() |
Introduction
To R |
If you are using any computer in the Dept you almost certainly need not download nor install any package as most of them are already available in the system. However, you will need to call the required package from your R session: require(). For example:
> require(geoR) Loading required package: geoR [1] TRUEThe command library() also works for loading packages in R. However, the former is preferred since it only loads a package if this has not been called previously. This avoids allocating space for replicates of existing functions.