Displaying 1 result from an estimated 1 matches for "choropltherzip".
Did you mean:
choroplethrzip
2015 Mar 12
2
Best way to handle dependency on non-CRAN package / large data package?
...needed for this function to work.
Please install it.", call. = FALSE)
}
The problem I now face is that choroplethrZip is too large to be hosted on
CRAN (~75MB), and I am unclear on the best way to manage this dependency.
Presumably I could just change the above message to say
Please install choropltherZip by typing:
library(devtools)
install_github('arilamstein/choroplethr at v1.0.0')
But I don't know if this is the best way to do this, or if there is
anything else to consider. I have never had to manage package dependencies
outside of CRAN, and have always thought of CRAN as be...