Computer and Information SciencesHugo

rOpenSci - open tools for open science

rOpenSci - open tools for open science
Open Tools and R Packages for Open Science
Home PageJSON Feed
language
Published
Author Matt Sundquist

Editor’s note: This is a guest post by Matt Sundquist from Plot.ly. Ggplotly and Plotly’s R API let you make ggplot2 plots, add py$ggplotly(), and make your plots interactive, online, and drawn with D3. Let’s make some.1. Getting Started and Examples Here is Fisher’s iris data.library("ggplot2")ggiris <- qplot(Petal.Width, Sepal.Length, data = iris, color = Species)print(ggiris) Let’s make it in Plotly.

Published
Author Scott Chamberlain

Previously on this blog we have discussed making geojson maps and uploading to Github for interactive visualization with USGS BISON data, and with GBIF data, and on my own personal blog. This is done using a file format called geojson , a file format based on JSON (JavaScript Object Notation) in which you can specify geographic data along with any other metadata.

Published
Author Ted Hart

One of our primary goals at ROpenSci is to wrap as many science API’s as possible. While each package can be used as a standalone interface, there’s lots of ways our packages can overlap and complement each other. Sure He-Man usually rode Battle Cat, but there’s no reason he couldn’t ride a my little pony sometimes too. That’s the case with our packages for GBIF and the worldbank climate data api.

Published
Author Ted Hart

A recent video on the PBS Ideas Channel posited that the discovery of climate change is humanities greatest scientific achievement. It took synthesizing generations of data from thousands of scientists, hundreds of thousands (if not more) of hours of computer time to run models at institutions all over the world. But how can the individual researcher get their hands of some this data?

Published
Author Scott Chamberlain

Previously on this blog and on my own personal blog, I have discussed how easy it is to create interactive maps on Github using a combination of R, git and Github. This is done using a file format called geojson , a file format based on JSON (JavaScript Object Notation) in which you can specify geographic data along with any other metadata.