Difference between revisions of "R Packages"
From Age of Water
Line 20: | Line 20: | ||
To see which packages are currently loaded into your R session, type: | To see which packages are currently loaded into your R session, type: | ||
<code><pre> search() </pre></code> | <code><pre> search() </pre></code> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<!-- Do NOT Edit below this Line --> | <!-- Do NOT Edit below this Line --> |
Revision as of 18:26, 22 October 2014
Installing required packages
Lake Analyzer
In R, type:
install.packages('rLakeAnalyzer')
To use package, type:
library(LakeAnalyzer)
see Lake Analyzer pdf for help
Lake Metabolizer
In R, type:
install.packages('LakeMetabolizer')
To use package, type:
library(LakeMetabolizer)
see Lake Metabolizer pdf for help
To see which packages are currently loaded into your R session, type:
search()