[This article was first published on simon jackman's blog » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I am digging this countrycode package in R I just found, written by a UM grad student Vincent Arel-Bundock. Very nice. Thanks!
countrycode("2","cown","iso3c")
[1] "USA"
It would be better if the package could handle failed matches a little more gracefully: e.g.,
> countrycode(c(2,730,818),"cown","iso3c")
[1] "USA"
when the user was expecting to get back a vector of length 3 (including, possibly, NAs when matches aren’t found). This just needs a little bit of care in the internals of the program, but otherwise this is a nice utility.
To leave a comment for the author, please follow the link and comment on their blog: simon jackman's blog » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.