README.md

bibsearch

AppVeyor build
status Travis build
status Codecov test
coverage Lifecycle:
maturing CRAN
status

The goal of bibsearch is to provide simple to use wrappers to API of multiple bibliographic search engines and database (e.g., Scopus, PubMed), with the specific aim of create shareable files (e.g., bibTeX, RIS).

Installation

You can install the development version of bibsearch from GitHub with:

# install.packages("devtools")
devtools::install_github("CorradoLanera/bibsearch")

Example

This is a basic example which shows you how to solve a common problem:

library(bibsearch)

pb_query <- "(machine learning) AND lanera[Author]"
sc_query <- "ALL(machine AND learning) AND AUTHOR-NAME (lanera)"

pb_res <- search_on_pubmed(pb_query)
sc_res <- search_on_scopus(sc_query)

write_bibliography(pb_res)                                         # RIS
write_bibliography(sc_res, file_type = "bib")                   # BibTeX

Code of Conduct

Please note that the bibsearch project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.



CorradoLanera/bibsearch documentation built on Jan. 1, 2020, 10:24 p.m.