Displaying 10 results from an estimated 10 matches for "choroplethr".
Did you mean:
choropleth
2025 Feb 12
1
install.packages and package dependencies
...uncan and Berwin,
Thank you for your help.
I really wanted confirmation from someone more experienced than me that I
wasn't missing something. It looks like there is no way to do this in one
line in base R, and that's fine.
For reference, the packages that I am doing this for are acs and
choroplethr, both of which were archived today. (choroplethr depends on
acs, and acs was archived due to a NOTE. I was the maintainer of
chroplethr).
I believe that at least a few people will still want to use choroplethr, at
least for a little while. The instructions I have posted on this are
consistent with...
2025 Feb 12
1
install.packages and package dependencies
On Thu, 6 Feb 2025 09:36:23 -0800
arilamstein at gmail.com wrote:
> It appears that install.packages does not automatically install
> package dependencies when the package is installed via a URL. [...]
> When I type getOption('repos') I get:
>
> CRAN
> "https://cran.rstudio.com/"
> attr(,"RStudio")
> [1] TRUE
Do you set
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...
2025 Feb 13
1
install.packages and package dependencies
...ees a corrected version of the package as far as I can go, since for the failing URLs, it isn't very clear what to do.
I would suggest that you, Ari, are best placed to offer to take over the package, meaning that as soon as you get a fixed version of acs to CRAN, you can re-submit your valued choroplethr to CRAN and be a bit better future-proofed. Since you do use github, I'd suggest using an acs repo there and running CI both for acs and for choroplethr using the acs on github. That would give you advance notice of possible rule tightening in R-devel.
Hope this helps,
Roger
--
Roger Bivand...
2025 Feb 13
1
install.packages and package dependencies
...rected version of the package as far as I can go, since for the failing URLs, it isn't very clear what to do.
>
> I would suggest that you, Ari, are best placed to offer to take over the package, meaning that as soon as you get a fixed version of acs to CRAN, you can re-submit your valued choroplethr to CRAN and be a bit better future-proofed. Since you do use github, I'd suggest using an acs repo there and running CI both for acs and for choroplethr using the acs on github. That would give you advance notice of possible rule tightening in R-devel.
>
> Hope this helps,
>
> Roger...
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...