search for: choroplethr

Displaying 6 results from an estimated 6 matches for "choroplethr".

Did you mean: choropleth
2015 Mar 12
2
Best way to handle dependency on non-CRAN package / large data package?
I have just written a package called choroplethrZip <https://github.com/arilamstein/choroplethrZip> which contains a shapefile and metadata on US Zip codes. It is currently hosted on github, has a tagged version number (v1.0.0) and passes R CMD check as verified by Travis. My plan is to use this in the next version of my package choroplethr...
2015 Mar 12
2
Best way to handle dependency on non-CRAN package / large data package?
...umentation brings up a good limitation of simply telling users to type "devtools::install_github()". Namely, what happens when the census bureau updates their shapefiles, and I subsequently decide to update the package? Or if I discover an error in the package and decide to update it? The choroplethr package could have a dependency, and it's not clear how to make that dependency explicit to the user. On Thu, Mar 12, 2015 at 9:22 AM, Dirk Eddelbuettel <edd at debian.org> wrote: > > On 12 March 2015 at 08:41, arilamstein at gmail.com wrote: > | But I don't know if this...
2017 Jan 03
3
Consulta mapas
Hola! Quiero empezar a georeferenciar en mapas con R. En blogs se encuentra bastante información pero veo que no hay unanimidad respecto a las librerías a utilizar ni tampoco la información es muy clara ni abarcativa. ¿Alguno/a trabaja con mapas en R y me puede indicar por donde encarar? En principio mi interés es realizar mapas sencillos con información por provincias y departamentos de
2014 Feb 04
1
Revolutions Blog: January 2014 roundup
...s recounts the history of S and R: http://bit.ly/1c1bern A review of "Doing Data Science", a new book by Rachel Schutt and Cathy O'Neil http://bit.ly/1c1berp Hadley Wickham introduces the dplyr package, with its "grammar of data manipulation" http://bit.ly/1c1bcje The new choroplethr package makes it easier to create data maps in R: http://bit.ly/1c1bcjf A developer preview of SparkR, an interface between R and Apache Spark, is now available: http://bit.ly/1c1berq Joseph Rickert reviews the capabilities of R for topological data analysis: http://bit.ly/1c1berr In a recent su...
2015 Mar 12
0
Best way to handle dependency on non-CRAN package / large data package?
...on brings up a good limitation of simply | telling users to type "devtools::install_github()". Namely, what happens when | the census bureau updates their shapefiles, and I subsequently decide to update | the package? Or if I discover an error in the package and decide to update it? | The choroplethr package could have a dependency, and it's not clear how to make | that dependency explicit to the user.? 100% agree. In writing drat, and talking to R users about it, I surprisingly often find many (advanced) R users who seem to not use update.packages() at all. R itself has your problem so...
2015 Mar 12
1
Best way to handle dependency on non-CRAN package / large data package?
Hi Dirk, I'm interested in pursing this but I haven't been able to figure how to to make it work. Here's what I have so far: install.packages("drat") library(drat) addRepo("arilamstein") I (obviously) have a copy of the choroplethrZip github repo locally. I typed: git checkout gh-pages git push I gather that this is what I needed to to do make the repo web-accessible. Although I found this step a bit confusing because it looks like github has a pages feature for both accounts and projects. And now the instructions say to t...