current cloudyr packages
Here’s what we’re working on so far. Most of the packages are available in our drat repository. The Travis CI status page can be used to check the build status of development versions (on GitHub).
Contributions are always welcome. See the cloudyr style guide for guidance on package development, structure, and coding style. Pull requests via GitHub are the preferred way to contribute code and documentation. Ideas, brainstorming, and general discussion are welcome as issues on project-specific repositories or in cloudyr’s gitter chatroom. If you would like to contribute a new package, have a look at the contributing page.
Installation Instructions
As they are released, all packages are hosted in a drat repository on this website (specifically: http://cloudyr.github.io/drat) and versions are updated daily and are periodically released to CRAN. This means you can install and upgrade cloudyr packages quite simply directly from R:
if (!require("drat")) {
install.packages("drat")
library("drat")
}
drat::addRepo("cloudyr", "http://cloudyr.github.io/drat")
install.packages("NameOfPackage")
To make this even easier, you can add drat::addRepo("cloudyr")
to your .Rprofile
or Rprofile.site
file, so that the cloudyr repository is available every time you open R.
Installation using devtools
You can also install packages using remotes::install_github()
or devtools::install_github()
. Note, however, that all stable versions of packages are automatically added to the cloudyr drat, so you can always retrieve a stable version using the above workflow. To obtain a potentially unstable version, use:
if (!require("remotes")) {
install.packages("remotes")
}
remotes::install_github("cloudyr/NameOfPackage")