Installation

From within an R session, type the following:


R>library(utils)
R>rforge <- "http://r-forge.r-project.org"
R>install.packages("estimate", repos=rforge, dependencies=TRUE)
    

Note that R-Forge only provides binary packages for the current R release; if you need a package for an older version of R, try installing its corresponding source package instead.

Documentation

Execute the following within the R environment to view the man pages.


R>library(estimate)
R>help(package="estimate")