medrxivr

medrxivr: Accessing and searching medRxiv and bioRxiv preprint data in R - Published in JOSS (2020)

https://github.com/ropensci/medrxivr

Science Score: 93.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 1 DOI reference(s) in JOSS metadata
  • Academic publication links
    Links to: biorxiv.org, medrxiv.org
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Keywords

bibliographic-database biorxiv evidence-synthesis medrxiv-data peer-reviewed preprint-records r r-package rstats systematic-reviews
Last synced: 6 months ago · JSON representation

Repository

Access and search medRxiv and bioRxiv preprint data

Basic Info
Statistics
  • Stars: 57
  • Watchers: 7
  • Forks: 8
  • Open Issues: 7
  • Releases: 0
Topics
bibliographic-database biorxiv evidence-synthesis medrxiv-data peer-reviewed preprint-records r r-package rstats systematic-reviews
Created about 6 years ago · Last pushed 9 months ago
Metadata Files
Readme Changelog Contributing Codemeta

README.Rmd

---
output: github_document
---



```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  eval = FALSE,
  message = FALSE,
  warning = FALSE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

library(medrxivr)
```

# medrxivr 



[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![CRAN Downloads.](https://cranlogs.r-pkg.org/badges/grand-total/medrxivr)](https://CRAN.R-project.org/package=medrxivr)
[![R build status](https://github.com/ropensci/medrxivr/workflows/R-CMD-check/badge.svg)](https://github.com/ropensci/medrxivr/actions)
[![Status at rOpenSci software peer-review](https://badges.ropensci.org/380_status.svg)](https://github.com/ropensci/software-review/issues/380)



An increasingly important source of health-related bibliographic content are preprints - preliminary versions of research articles that have yet to undergo peer review. The two preprint repositories most relevant to health-related sciences are [medRxiv](https://www.medrxiv.org/) and [bioRxiv](https://www.biorxiv.org/), both of which are operated by the Cold Spring Harbor Laboratory.

The goal of the `medrxivr` R package is two-fold. In the first instance, it provides programmatic access to the [Cold Spring Harbour Laboratory (CSHL) API](https://api.biorxiv.org/), allowing users to easily download medRxiv and bioRxiv preprint metadata (e.g. title, abstract, publication date, author list, etc) into R. The package also provides access to a maintained static snapshot of the medRxiv repository (see [Data sources](#medrxiv-data)). Secondly, `medrxivr` provides functions to search the downloaded preprint records using regular expressions and Boolean logic, as well as helper functions that allow users to export their search results to a .BIB file for easy import to a reference manager and to download the full-text PDFs of preprints matching their search criteria.

## Installation


To install the stable version of the package from CRAN:

``` {r}
install.packages("medrxivr")
library(medrxivr)
```

Alternatively, to install the development version from GitHub, use the following code:

``` {r}
install.packages("devtools")
devtools::install_github("ropensci/medrxivr")
library(medrxivr)
```

## Data sources

### medRxiv data

`medrixvr` provides two ways to access medRxiv data:  

  - `mx_api_content(server = "medrxiv")` creates a local copy of all data available from the medRxiv API at the time the function is run.
  
``` {r}
# Get a copy of the database from the live medRxiv API endpoint
preprint_data <- mx_api_content()  
```
  
  - `mx_snapshot()` provides access to a static snapshot of the medRxiv database. The snapshot is created each morning at 6am using `mx_api_content()` and is stored as CSV file in the [medrxivr-data repository](https://github.com/mcguinlu/medrxivr-data). This method does not rely on the API (which can become unavailable during peak usage times) and is usually faster (as it reads data from a CSV rather than having to re-extract it from the API). Discrepancies between the most recent static snapshot and the live database can be assessed using `mx_crosscheck()`.
  
``` {r}
# Get a copy of the database from the daily snapshot
preprint_data <- mx_snapshot()  
```
  
The relationship between the two methods for the medRxiv database is summarised in the figure below:
  
``` {r eval = TRUE, echo = FALSE, out.width = "500px", out.height = "400px"}

knitr::include_graphics("vignettes/data_sources.png")
```
  
### bioRxiv data

Only one data source exists for the bioRxiv repository: 

  - `mx_api_content(server = "biorxiv")` creates a local copy of all data available from the bioRxiv API endpoint at the time the function is run. __Note__: due to it's size, downloading a complete copy of the bioRxiv repository in this manner takes a long time (~ 1 hour). 

``` {r}
# Get a copy of the database from the live bioRxiv API endpoint
preprint_data <- mx_api_content(server = "biorxiv")
```

## Performing your search

Once you have created a local copy of either the medRxiv or bioRxiv preprint database, you can pass this object (`preprint_data` in the examples above) to `mx_search()` to search the preprint records using an advanced search strategy.

``` {r, eval = TRUE, message = TRUE}
# Import the medrxiv database
preprint_data <- mx_snapshot()

# Perform a simple search
results <- mx_search(data = preprint_data,
                     query ="dementia")

# Perform an advanced search
topic1  <- c("dementia","vascular","alzheimer's")  # Combined with Boolean OR
topic2  <- c("lipids","statins","cholesterol")     # Combined with Boolean OR
myquery <- list(topic1, topic2)                    # Combined with Boolean AND

results <- mx_search(data = preprint_data,
                     query = myquery)

```

You can also explore which search terms are contributing most to your search by setting `report = TRUE`:

```{r, eval = TRUE, message = TRUE}
results <- mx_search(data = preprint_data,
                     query = myquery,
                     report = TRUE)
```

## Further functionality

### Export records identified by your search to a .BIB file

Pass the results of your search above (the `results` object) to the `mx_export()` to export references for preprints matching your search results to a .BIB file so that they can be easily imported into a reference manager (e.g. Zotero, Mendeley).

```{r, eval = FALSE}
mx_export(data = results,
          file = "mx_search_results.bib")

```

### Download PDFs for records returned by your search

Pass the results of your search above (the `results` object) to the `mx_download()` function to download a copy of the PDF for each record found by your search.

```{r}
mx_download(results,        # Object returned by mx_search(), above
            "pdf/",         # Directory to save PDFs to 
            create = TRUE)  # Create the directory if it doesn't exist

```

## Accessing the raw API data

By default, the `mx_api_*()` functions clean the data returned by the API for use with other `medrxivr` functions. 

To access the raw data returned by the API, the `clean` argument should  set to `FALSE`:

``` {r}
mx_api_content(to_date = "2019-07-01", clean = FALSE)

```

See [this article](https://docs.ropensci.org/medrxivr/articles/medrxiv-api.html#accessing-the-raw-api-data) for more details.

## Detailed guidance

Detailed guidance, including advice on how to design complex search strategies, is available on the [`medrxivr` website.](https://docs.ropensci.org/medrxivr/)

## Linked repositories

See here for the [code used to take the daily snapshot](https://github.com/mcguinlu/medrxivr-data) and [the code that powers the `medrxivr` web app](https://github.com/mcguinlu/medrxivr-app).

## Other tools/packages for working with medRxiv/bioRxiv data

The focus of `medrxivr` is on providing tools to allow users to import and then search medRxiv and bioRxiv data. Below are a list of complementary packages that provide distinct but related functionality when working with medRxiv and bioRxiv data:

* [`rbiorxiv`](https://github.com/nicholasmfraser/rbiorxiv) by [Nicholas Fraser](https://github.com/nicholasmfraser) provides access to the same medRxiv and bioRxiv _content_ data as `medrxivr`, but also provides access to the _usage_ data (e.g. downloads per month) that the Cold Spring Harbour Laboratory API offers. This is useful if you wish to explore, for example, [how the number of PDF downloads from bioRxiv has grown over time.](https://github.com/nicholasmfraser/rbiorxiv#pdf-downloads-over-time)

## Code of conduct

Please note that this package is released with a [Contributor
Code of Conduct](https://ropensci.org/code-of-conduct/). 
By
contributing to this project, you agree to abide by its terms.

## Disclaimer

This package and the data it accesses/returns are provided "as is", with no guarantee of accuracy. Please be sure to check the accuracy of the data yourself (and do let me know if you find an issue so I can fix it for everyone!)

Owner

  • Name: rOpenSci
  • Login: ropensci
  • Kind: organization
  • Email: info@ropensci.org
  • Location: Berkeley, CA

JOSS Publication

medrxivr: Accessing and searching medRxiv and bioRxiv preprint data in R
Published
October 09, 2020
Volume 5, Issue 54, Page 2651
Authors
Luke A. McGuinness
Department of Population Health Science, University of Bristol, MRC Intergrative Epidemiology Unit, University of Bristol
Lena Schmidt ORCID
Department of Population Health Science, University of Bristol
Editor
Daniel S. Katz ORCID
Tags
systematic review evidence synthesis bibliographic database

CodeMeta (codemeta.json)

{
  "@context": [
    "https://doi.org/10.5063/schema/codemeta-2.0",
    "http://schema.org"
  ],
  "@type": "SoftwareSourceCode",
  "identifier": "medrxivr",
  "description": "An increasingly important source of health-related bibliographic \n    content are preprints - preliminary versions of research articles that have\n    yet to undergo peer review. The two preprint repositories most relevant to \n    health-related sciences are medRxiv <https://www.medrxiv.org/> and\n    bioRxiv <https://www.biorxiv.org/>, both of which are operated by the Cold \n    Spring Harbor Laboratory. 'medrxivr' provides programmatic access to the \n    'Cold Spring Harbour Laboratory (CSHL)' API <https://api.biorxiv.org/>,\n    allowing users to easily download medRxiv and bioRxiv preprint metadata\n    (e.g. title, abstract, publication date, author list, etc) into R. \n    'medrxivr' also provides functions to search the downloaded preprint records \n    using regular expressions and Boolean logic, as well as helper functions \n    that allow users to export their search results to a .BIB file for easy \n    import to a reference manager and to download the full-text PDFs of \n    preprints matching their search criteria.",
  "name": "medrxivr: Access and Search MedRxiv and BioRxiv Preprint Data",
  "codeRepository": "https://github.com/ropensci/medrxivr",
  "issueTracker": "https://github.com/ropensci/medrxivr/issues",
  "license": "https://spdx.org/licenses/MIT",
  "version": "0.0.4",
  "programmingLanguage": {
    "@type": "ComputerLanguage",
    "name": "R",
    "url": "https://r-project.org"
  },
  "runtimePlatform": "R version 3.6.1 (2019-07-05)",
  "author": [
    {
      "@type": "Person",
      "givenName": "Luke",
      "familyName": "McGuinness",
      "email": "luke.mcguinness@bristol.ac.uk",
      "@id": "https://orcid.org/0000-0001-8730-9761"
    },
    {
      "@type": "Person",
      "givenName": "Lena",
      "familyName": "Schmidt",
      "@id": "https://orcid.org/0000-0003-0709-8226"
    }
  ],
  "contributor": {},
  "copyrightHolder": {},
  "funder": {},
  "maintainer": [
    {
      "@type": "Person",
      "givenName": "Luke",
      "familyName": "McGuinness",
      "email": "luke.mcguinness@bristol.ac.uk",
      "@id": "https://orcid.org/0000-0001-8730-9761"
    }
  ],
  "softwareSuggestions": [
    {
      "@type": "SoftwareApplication",
      "identifier": "testthat",
      "name": "testthat",
      "version": ">= 2.1.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=testthat"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "knitr",
      "name": "knitr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=knitr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "rmarkdown",
      "name": "rmarkdown",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rmarkdown"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "covr",
      "name": "covr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=covr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "kableExtra",
      "name": "kableExtra",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=kableExtra"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "spelling",
      "name": "spelling",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=spelling"
    }
  ],
  "softwareRequirements": [
    {
      "@type": "SoftwareApplication",
      "identifier": "methods",
      "name": "methods"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "dplyr",
      "name": "dplyr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=dplyr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "curl",
      "name": "curl",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=curl"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "jsonlite",
      "name": "jsonlite",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=jsonlite"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "httr",
      "name": "httr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=httr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "stringr",
      "name": "stringr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=stringr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "rlang",
      "name": "rlang",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rlang"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "vroom",
      "name": "vroom",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=vroom"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "bib2df",
      "name": "bib2df",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=bib2df"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "tibble",
      "name": "tibble",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tibble"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "progress",
      "name": "progress",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=progress"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "lubridate",
      "name": "lubridate",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=lubridate"
    }
  ],
  "releaseNotes": "https://github.com/ropensci/medrxivr/blob/master/NEWS.md",
  "readme": "https://github.com/ropensci/medrxivr/blob/master/README.md",
  "fileSize": "1425.236KB",
  "contIntegration": [
    "https://travis-ci.com/ropensci/medrxivr",
    "https://codecov.io/gh/ropensci/medrxivr?branch=master"
  ],
  "developmentStatus": "https://www.repostatus.org/#active",
  "review": {
    "@type": "Review",
    "url": "https://github.com/ropensci/software-review/issues/380",
    "provider": "https://ropensci.org"
  },
  "keywords": [
    "evidence-synthesis",
    "systematic-reviews",
    "bibliographic-database",
    "rstats",
    "r-package",
    "r",
    "preprint-records",
    "medrxiv-data",
    "biorxiv",
    "peer-reviewed"
  ],
  "citation": [
    {
      "@type": "ScholarlyArticle",
      "datePublished": "2020",
      "author": [
        {
          "@type": "Person",
          "givenName": [
            "Luke",
            "A."
          ],
          "familyName": "McGuinness"
        },
        {
          "@type": "Person",
          "givenName": "Lena",
          "familyName": "Schmidt"
        }
      ],
      "name": "medrxivr: Accessing and searching medRxiv and bioRxiv preprint data in R",
      "identifier": "10.21105/joss.02651",
      "url": "https://doi.org/10.21105/joss.02651",
      "pagination": "2651",
      "@id": "https://doi.org/10.21105/joss.02651",
      "sameAs": "https://doi.org/10.21105/joss.02651",
      "isPartOf": {
        "@type": "PublicationIssue",
        "issueNumber": "54",
        "datePublished": "2020",
        "isPartOf": {
          "@type": [
            "PublicationVolume",
            "Periodical"
          ],
          "volumeNumber": "5",
          "name": "Journal of Open Source Software"
        }
      }
    }
  ],
  "provider": {
    "@id": "https://cran.r-project.org",
    "@type": "Organization",
    "name": "Comprehensive R Archive Network (CRAN)",
    "url": "https://cran.r-project.org"
  },
  "relatedLink": "https://CRAN.R-project.org/package=medrxivr"
}

Papers & Mentions

Total mentions: 3

A descriptive analysis of the data availability statements accompanying medRxiv preprints and a comparison with their published counterparts
Last synced: 4 months ago
Rates and predictors of data and code sharing in the medical and health sciences: Protocol for a systematic review and individual participant data meta-analysis.
Last synced: 4 months ago
Investigating and evaluating evidence of the behavioural determinants of adherence to social distancing measures – A protocol for a scoping review of COVID-19 research
Last synced: 4 months ago

GitHub Events

Total
  • Issues event: 3
  • Watch event: 4
  • Issue comment event: 3
  • Push event: 8
  • Pull request review event: 1
  • Pull request event: 4
  • Fork event: 2
  • Create event: 1
Last Year
  • Issues event: 3
  • Watch event: 4
  • Issue comment event: 3
  • Push event: 8
  • Pull request review event: 1
  • Pull request event: 4
  • Fork event: 2
  • Create event: 1

Committers

Last synced: 7 months ago

All Time
  • Total Commits: 31
  • Total Committers: 2
  • Avg Commits per committer: 15.5
  • Development Distribution Score (DDS): 0.032
Past Year
  • Commits: 31
  • Committers: 2
  • Avg Commits per committer: 15.5
  • Development Distribution Score (DDS): 0.032
Top Committers
Name Email Commits
Yaoxiang Li l****g@o****m 30
Maëlle Salmon m****n@y****e 1

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 24
  • Total pull requests: 21
  • Average time to close issues: about 2 months
  • Average time to close pull requests: 2 months
  • Total issue authors: 9
  • Total pull request authors: 6
  • Average comments per issue: 1.0
  • Average comments per pull request: 0.52
  • Merged pull requests: 17
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 5
  • Pull requests: 1
  • Average time to close issues: about 2 months
  • Average time to close pull requests: about 12 hours
  • Issue authors: 4
  • Pull request authors: 1
  • Average comments per issue: 1.2
  • Average comments per pull request: 1.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • mcguinlu (13)
  • maelle (4)
  • ImFr3azY (1)
  • igordot (1)
  • BryanTegomoh (1)
  • jannisborn (1)
  • kathsherratt (1)
  • hack-r (1)
  • esloch (1)
Pull Request Authors
  • mcguinlu (11)
  • maelle (4)
  • esloch (4)
  • Jamesohare1 (4)
  • nthun (2)
  • danielskatz (1)
Top Labels
Issue Labels
bug (1) help wanted (1) good first issue (1) ES-Hacktoberfest (1)
Pull Request Labels

Packages

  • Total packages: 2
  • Total downloads:
    • cran 220 last-month
  • Total dependent packages: 0
    (may contain duplicates)
  • Total dependent repositories: 1
    (may contain duplicates)
  • Total versions: 5
  • Total maintainers: 1
cran.r-project.org: medrxivr

Access and Search MedRxiv and BioRxiv Preprint Data

  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 220 Last month
Rankings
Stargazers count: 7.6%
Forks count: 10.8%
Average: 22.8%
Dependent repos count: 23.8%
Dependent packages count: 28.7%
Downloads: 43.2%
Maintainers (1)
Last synced: 6 months ago
conda-forge.org: r-medrxivr
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 34.0%
Stargazers count: 40.7%
Average: 43.4%
Forks count: 47.7%
Dependent packages count: 51.2%
Last synced: 6 months ago

Dependencies

DESCRIPTION cran
  • bib2df * imports
  • curl * imports
  • data.table * imports
  • dplyr * imports
  • httr * imports
  • jsonlite * imports
  • lubridate * imports
  • methods * imports
  • progress * imports
  • purrr * imports
  • rlang * imports
  • stringr * imports
  • tibble * imports
  • vroom * imports
  • covr * suggests
  • kableExtra * suggests
  • knitr * suggests
  • rmarkdown * suggests
  • spelling * suggests
  • testthat >= 2.1.0 suggests
.github/workflows/R-CMD-check.yaml actions
  • actions/cache v2 composite
  • actions/checkout v4 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
.github/workflows/test-coverage.yaml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite