vignettes/1.install.Rmd
1.install.Rmd
Be aware that this package is under development and test do not 100% trust the functions!!! You’re welcome to contribute!
install R
on your computer. Follow instruction at https://cloud.r-project.org/. If your not familiar with R
, it is advised to start with a tutorial (there are a lot on internet).
install the R
package devtools
and load it
install.packages("devtools") library(devtools)
download the current version of the package: download v0.26
unzip the folder on your local directory
install the package thanks to the install
funtion from the devtool
package
devtools::install("PPBstats-0.26")
Note that when installing the package, R
will load several package and may ask you to download dependencies. For exemple JAGS
software in order to do bayesian analysis (http://mcmc-jags.sourceforge.net/).
You can also load the development version:
devtools::install_github("priviere/PPBstats")
The evolution of the code regarding the development version are here.
library(PPBstats)