I am trying to download the 'USAboundaries' package from the R Archive and am receiving this error:
install.packages(pkgs=pkgFile, type="source", repos=NULL)
Error in getOctD(x, offset, len) : invalid octal digit
Warning in install.packages :
installation of package ‘USAboundaries_0.4.0.tar.gz’ had non-zero exit status
There were no dependencies listed in the 'USAboundaries_0.4.0.tar.gz' description.
This is what I have so far:
url <- "https://cran.r-project.org/web/packages/USAboundaries/index.html"
pkgFile <- "USAboundaries_0.4.0.tar.gz"
download.file(url = url, destfile = pkgFile)
install.packages(pkgs=pkgFile, type="source", repos=NULL)