dplR
Introduction¶
The dplR library is hosted on CRAN and can be run in RStudio and RStudio-Server (in browser).
The R language and programming environment is now commonly used in dendrochronology. R is the world's preeminent open-source statistical computing software and its power can be harnessed for tree-ring science through the contribution of add-on packages which are freely available on the internet. The R version of openDendro's codebase is contained in the package dplR.
Working Online¶
You can run dplR
in the cloud on a web browser after making a free account at posit.cloud or using the openDendro Hosted Apps.
Installation¶
You can run dplR on your own computer. First install R and then dplR which is an ad-on package to R. See Learning to Love dplR for more details.
Stable Version¶
The latest, stable, release version of dplR
can be installed from The Comprehensive R Archive Network (CRAN) as follows:
install.packages("dplR")
This is the officially released version of dplR
.
Development Version¶
The code here on GitHub is the version of dplR
that is currently being developed. It might be unstable.
You can install the development version using r-universe
.
install.packages("dplR", repos = "https://opendendro.r-universe.dev/")
Alternatively, the development version can be installed from the source code with the devtools
package.
devtools::install_github("opendendro/dplR")
Because dplR
includes both C and Fortran code, you will need the appropriate compilers installed on your system to build from source.
Getting Started¶
New users of dplR can begin by working with the introductory chapters in Learning to Love dplR which contains instructional material for using dplR
.