Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/njahn82/scielor
R wrapper for SciELO (Scientific Electronic Library Online) - WIP
https://github.com/njahn82/scielor
Last synced: 28 days ago
JSON representation
R wrapper for SciELO (Scientific Electronic Library Online) - WIP
- Host: GitHub
- URL: https://github.com/njahn82/scielor
- Owner: njahn82
- License: other
- Created: 2019-08-01T20:15:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-02T09:25:23.000Z (over 5 years ago)
- Last Synced: 2024-10-22T03:42:25.913Z (3 months ago)
- Language: R
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# scielor
[![Travis build status](https://travis-ci.org/njahn82/scielor.svg?branch=master)](https://travis-ci.org/njahn82/scielor)
The goal of scielor is to interface SciELO () and its
open access collections.## Installation
You can install the released version of scielor using devtools
``` r
devtools::install_github("njahn82/scielor")
```## Example
Search SciELO
```{r}
scielo_search_all(list(q = "dengue"))
```Return facets for whole SciELO content
```{r}
scielo_search_all(list(q = "dengue"), facet = TRUE)
```## More about searching SOLR endpoints?
This package makes use of the package [solrium: General Purpose R Interface to 'Solr'](https://cran.r-project.org/web/packages/solrium/index.html) from [rOpenSci](https://ropensci.org/).
## Contributing
Please note that the 'scielor' project is released with a
[Contributor Code of Conduct](CODE_OF_CONDUCT.md).
By contributing to this project, you agree to abide by its terms.