Last active
December 2, 2016 17:21
-
-
Save jsta/c96dc6920af06904532b08a88ad4ac1e to your computer and use it in GitHub Desktop.
Get PLOS supplementary material with R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0081457 | |
library(fulltext) | |
library(alm) | |
query <- ft_search(query = "Estimating Summer Nutrient Concentrations in | |
Northeastern Lakes from SPARROW Load Predictions and Modeled | |
Lake Depth and Volume", from = "plos") | |
doi <- ft_links(query)$plos$ids | |
alm_ids(doi = doi, info = "detail")$data$info$title | |
dt <- read.csv(ft_get_si(doi, 1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment