Step by step: creating an R package
10 February 2015
With the help of posts by Hillary Parker and trestletech I managed to create my first R package in RStudio (here’s why) . It wasn’t as difficult as I thought and it seems to work. Below is a basic step-by-step description of how I did it (this assumes you have one or more R functions to include in your package, preferably in separate R-script files):
If you want, you can upload the package to Github. Other people will then be able to install it:
library(devtools)
install_github('username/package-name')