-
Notifications
You must be signed in to change notification settings - Fork 6
Getting started
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.
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)
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.
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.