Skip to content
LiamDBailey edited this page Sep 8, 2017 · 1 revision

Downloading and installing climwin

R statistical environment

climwin runs in the R statistical environment. If you haven't used R before, you can download it here. We also recommend downloading R studio. For Mac users, please also install XQuartz.

Download the latest version on CRAN

A stable version of climwin is available to download from CRAN. This can be done in R with the following code:

install.packages("climwin", dependencies = TRUE)

Download the beta version

We are constantly updating climwin to add new features and fix bugs. The newest version of climwin is stored on GitHub. It can be installed on R with the following code:

install.packages("devtools", dependencies = TRUE) devtools::install_github("LiamDBailey/climwin")

NOTE: The version of climwin on GitHub is a work in progress. New features may still have bugs or errors that require fixing. Please be patient. If you notice any problems let us know in the climwin Google Group.

Using climwin

Once you have installed climwin on your system, either from CRAN or GitHub, you finally need to load the package.

library(climwin)

After this is completed you should be ready to go.

Clone this wiki locally