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 Chris Baker

Why care about patents? 1. Patents play a critical role in incentivizing innovation, withoutwhich we wouldn’t have much of the technology we rely on everyday What does your iPhone, Google’s PageRank algorithm, and a buttersubstitute called Smart Balance all have in common? …They all probably wouldn’t be here if not for patents.

Published
Author Scott Chamberlain

A new package crul ison CRAN. crul is another HTTP client for R, but is relatively simplifiedcompared to httr, and is being builtto link closely with webmockr and vcr. webmockr andvcr are packages ported from Ruby’s webmockand vcr, respectively.They both make mocking HTTP requests really easy. A major use case for mocking HTTP requests is for unit tests.

Published
Author Scott Chamberlain

rOpenSci specializes in creating R libraries for accessing data resources on the web from R. Most times you request data from the web in R with our packages, you should have no problem. However, you evenutally will run into problems. In addition, there are advanced things you can do modifying requests to web resources that fall in the advanced stuff category.

Published
Author Ted Hart

One of the goals of the rOpenSci is to facilitate interoperability between different data sources around web with our tools. We can achieve this by providing functionality within our packages that converts data coming down via web APIs in one format (often a provider specific schema) into a standard format. The new version of rWBclimate that we just posted to CRAN does just that.

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
Authors Scott Chamberlain, Karthik Ram

We’ve received a number of questions from our users about dealing with the finer details of data sources on the web. Whether you’re reading data from local storage such as a csv file, a .Rdata store, or possibly a proprietary file format, you’ve most likely run into some issues in the past. Common problems include passing incorrect paths, files being too big for memory, or requiring several packages to read files in incompatible formats.