The author has found it best to install dependencies before attempting to install SDraw. To install dependencies, execute the following:
install.packages( c("spsurvey", "rgeos", "sp", "deldir"), repos="http://cran.r-project.org")
rgeos
requires java. Java should be installed a priori. On Unix systems, the libraries needed for rgeos
are cryptically named. Google 'install rgeos unix'.
The current stable release of SDraw can be installed like any other package:
install.packages( c("SDraw"), repos="http://cran.r-project.org")
The current development version of SDraw can be installed from GitHub. Assuming devtools
is installed and loaded, the following should work:
install_github("tmcd82070/SDraw")
- Download the source tarball (the
tar.gz
) from the current release - In R, execute the following:
install.packages( pkgs=file.choose(), type="source"" )
- A choose-file dialog will appear. Navigate to the
tar.gz
file and click "Open"
Issue library(SDraw)
at the command prompt.