Installing SWMPr

Option 1

From the R Console prompt, run the following commands to install from CRAN and load.

install.packages('SWMPr')
library(SWMPr)

Option 2

  1. Download the source file: SWMPr_2.2.0.tar.gz

  2. Install the file using the full file path

# change as needed
path_to_file <- 'C:/Users/mbeck/Desktop/SWMPr_2.2.0.tar.gz'

# install, load
install.packages(path_to_file, repos = NULL, type="source")
library(SWMPr)