Download
How to obtain and install actuar.
Stable release
The source or binary copy of version 0.9-7 is available on CRAN. To install this version in the main R library tree as a user having root or administrator write access, simply enter at the R command prompt
install.packages("actuar")
After installing the package, one must load it in memory in order to use its functions:
library("actuar")
A user without write access to the main R library tree must install the package in a private tree using the lib argument of install.packages and then the lib.loc argument to library. For example:
install.packages("actuar", lib = "~/R/library")
library(actuar, lib.loc = "~/R/library")
Development release
There is currently no available snapshot of the development version of actuar.
The source code of the package is always available from the Subversion repository. To download the complete source code of the package in a directory actuar using a Subversion client, use
svn co https://vgoulet.act.ulaval.ca/svn/R/actuar/trunk/ actuar