R has a JSON package
[This article was first published on What You're Doing Is Rather Desperate » 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.
Named rjson, appropriately. It’s quite basic just now, but contains methods for interconversion between R objects and JSON. Something like this:
> library(rjson) > data <- list(a=1,b=2,c=3) > json <- toJSON(data) > json [1] "{"a":1,"b":2,"c":3}" > cat(json, file="data.json")
Use cases? I wonder if RApache could be used to build an API that serves R data in JSON format?
Posted in computing, R, statistics Tagged: cran, json, r-project, statistics
To leave a comment for the author, please follow the link and comment on their blog: What You're Doing Is Rather Desperate » 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.