Using biorxivr

Searching

The search functionality comes from the general search form interface, so the search may not be at the granularity you desire without further parsing of results. This is the equivalent of the search box on the main landing page of biorxiv.

library(biorxivr)
bxEco <- bx_search("Ecology",limit = 10)
summary(bxEco)
bxEco <- bx_search("Gotelli and Hart",limit = 10)

This will return a search results object that has the URL's for your search results. If you want to get details about all your search results we can extract basic features like DOI, Authors, e-mails, title, abstract text, date as well as metrics on views and downloads.

bxEcoDetails <-  bx_extract(bxEco)

bxEcoDetails[[1]]

There's also some basic plotting functionality that will allow you plot views and downloads

Plot views the number of views an abstract.

```r

plot(bxEcoDetails[[1]],type="abs")

```

Plot the number of PDF downloads.

```r

plot(bxEcoDetails[[1]],type="dl")

```

Finally, you can easily download PDF's from all your search results.

bx_download(bxEco,"~/biorxiv_pdfs")


Try the biorxivr package in your browser

Any scripts or data that you put into this service are public.

biorxivr documentation built on July 8, 2020, 6:06 p.m.