igor

R package to extract information from the Intergovernmental Organizations ('IGO') Database , version 3, provided by the Correlates of War Project https://correlatesofwar.org/

https://github.com/dieghernan/igor

Science Score: 57.0%

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

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (18.3%) to scientific vocabulary

Keywords

correlates-of-war cran cran-r igo intergovernmental-organizations r r-package rstats

Keywords from Contributors

standardization tiff tif sf png jpg meshing interpretability terra jpeg
Last synced: 6 months ago · JSON representation ·

Repository

R package to extract information from the Intergovernmental Organizations ('IGO') Database , version 3, provided by the Correlates of War Project https://correlatesofwar.org/

Basic Info
Statistics
  • Stars: 6
  • Watchers: 2
  • Forks: 1
  • Open Issues: 2
  • Releases: 9
Topics
correlates-of-war cran cran-r igo intergovernmental-organizations r r-package rstats
Created about 5 years ago · Last pushed 7 months ago
Metadata Files
Readme Changelog Contributing Funding License Citation Codemeta

README.Rmd

---
output: github_document
bibliography: inst/REFERENCES.bib
link-citations: yes
---



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

# igoR 



[![CRAN
status](https://www.r-pkg.org/badges/version/igoR)](https://CRAN.R-project.org/package=igoR)
[![CRAN
results](https://badges.cranchecks.info/worst/igoR.svg)](https://cran.r-project.org/web/checks/check_results_igoR.html)
[![CRAN-Downloads](https://cranlogs.r-pkg.org/badges/grand-total/igoR)](https://cran.r-project.org/package=igoR)
[![r-universe](https://dieghernan.r-universe.dev/badges/igoR)](https://dieghernan.r-universe.dev/)
[![R-CMD-check](https://github.com/dieghernan/igoR/actions/workflows/check-full.yaml/badge.svg)](https://github.com/dieghernan/igoR/actions/workflows/check-full.yaml)
[![R-hub](https://github.com/dieghernan/igoR/actions/workflows/rhub.yaml/badge.svg)](https://github.com/dieghernan/igoR/actions/workflows/rhub.yaml)
[![codecov](https://codecov.io/gh/dieghernan/igoR/branch/main/graph/badge.svg?token=UH3VLTTTRE)](https://app.codecov.io/gh/dieghernan/igoR)
[![CodeFactor](https://www.codefactor.io/repository/github/dieghernan/igor/badge)](https://www.codefactor.io/repository/github/dieghernan/igor)
[![DOI](https://img.shields.io/badge/DOI-10.32614/CRAN.package.igoR-blue)](https://doi.org/10.32614/CRAN.package.igoR)
[![Lifecycle:
stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![status](https://tinyverse.netlify.app/status/igoR)](https://CRAN.R-project.org/package=igoR)



The goal of **igoR** is to provide access and to extract information from the
Intergovernmental Organizations Database (IGOs), version 3, provided by the
Correlates of War Project [@pevehouse2020].

The dataset (V3) includes information of **`r nrow(igoR::igo_search())`** IGOs
from `r min(igoR::igo_year_format3$year)` to
`r max(igoR::igo_year_format3$year)`, as well as membership information.

-   Source: [Intergovernmental Organizations
    (v3)](https://correlatesofwar.org/data-sets/IGOs/).
-   Documentation and vignettes on 

Additionally, a distribution of the State System Membership
[@correlatesofwarproject2017] is included on this package.

## Installation

Install **igoR** from [**CRAN**](https://CRAN.R-project.org/package=igoR):

```{r, eval=FALSE}
install.packages("igoR")
```

You can install the developing version from GitHub:

```{r, eval=FALSE}
library(remotes)
install_github("dieghernan/igoR")
```

Alternatively, you can install **igoR** using the
[r-universe](https://dieghernan.r-universe.dev/igoR):

```{r, eval=FALSE}
# Install igoR in R:
install.packages("igoR", repos = c(
  "https://dieghernan.r-universe.dev",
  "https://cloud.r-project.org"
))
```

## Basic usage

### Search an IGO by name:

Search all IGOs related with "sugar":

```{r search}
library(igoR)

result_sugar <- igo_search("Sugar")
```

```{r echo=FALSE}
knitr::kable(result_sugar)
```

### IGO members:

Composition of the [European Economic
Community](https://en.wikipedia.org/wiki/European_Economic_Community) over time:

```{r eec}
eec_code <- igo_search("EEC", exact = TRUE)

# Founding
eec_init <- igo_members(eec_code$ioname, year = eec_code$sdate)
```

```{r echo=FALSE}
knitr::kable(eec_init, caption = paste0("EEC, members
                                        (", unique(eec_init$year), ")"))
```

```{r eec_end}
# Latest date
eec_end <- igo_members(eec_code$ioname)
```

```{r echo=FALSE}
knitr::kable(eec_end, caption = paste0(
  "EEC, members (",
  unique(eec_end$year), ")"
))
```

## Recommended packages

-   **countrycode** for converting country names and codes across different
    systems (ISO3, Eurostat, World Bank, UN, FIPS/GEC, etc..)
-   **dplyr** for data manipulation.

## Citation

```{r cit, echo=FALSE, results='asis'}
print(citation("igoR")[1], style = "html")
```

A BibTeX entry for LaTeX users:

```{r, echo=FALSE, comment = ''}
toBibtex(citation("igoR")[1])
```

## References

::: {#refs}
:::

## Contributors








All contributions to this project are gratefully acknowledged using the [`allcontributors` package](https://github.com/ropensci/allcontributors) following the [allcontributors](https://allcontributors.org) specification. Contributions of any kind are welcome!


dieghernan

Owner

  • Name: Diego H.
  • Login: dieghernan
  • Kind: user
  • Location: Madrid, ES

Citation (CITATION.cff)

# --------------------------------------------
# CITATION file created with {cffr} R package
# See also: https://docs.ropensci.org/cffr/
# --------------------------------------------
 
cff-version: 1.2.0
message: 'To cite package "igoR" in publications use:'
type: software
license: GPL-3.0-or-later
title: 'igoR: Intergovernmental Organizations Database'
version: 0.2.1
doi: 10.32614/CRAN.package.igoR
identifiers:
- type: doi
  value: 10.32614/CRAN.package.igoR
abstract: Tools to extract information from the Intergovernmental Organizations ('IGO')
  Database , version 3, provided by the Correlates of War Project <https://correlatesofwar.org/>.
  See also Pevehouse, J. C. et al. (2020). Version 3 includes information from 1815
  to 2014.
authors:
- family-names: Hernangómez
  given-names: Diego
  email: diego.hernangomezherrero@gmail.com
  orcid: https://orcid.org/0000-0001-8457-4658
preferred-citation:
  type: manual
  title: 'igoR: Intergovernmental Organizations Database'
  authors:
  - family-names: Hernangómez
    given-names: Diego
    email: diego.hernangomezherrero@gmail.com
    orcid: https://orcid.org/0000-0001-8457-4658
  doi: 10.32614/CRAN.package.igoR
  year: '2025'
  version: 0.2.1
  url: https://dieghernan.github.io/igoR/
  abstract: Tools to extract information from the Intergovernmental Organizations
    (IGO) Database , version 3, provided by the Correlates of War Project <https://correlatesofwar.org/>.
    See also Pevehouse, J. C. et al. (2020). Version 3 includes information from 1815
    to 2014.
repository: https://CRAN.R-project.org/package=igoR
repository-code: https://github.com/dieghernan/igoR
url: https://dieghernan.github.io/igoR/
contact:
- family-names: Hernangómez
  given-names: Diego
  email: diego.hernangomezherrero@gmail.com
  orcid: https://orcid.org/0000-0001-8457-4658
keywords:
- r
- igo
- correlates-of-war
- intergovernmental-organisations
- cran
- intergovernmental-organizations
- r-package
- rstats
- cran-r
references:
- type: article
  title: 'Tracking organizations in the world: The Correlates of War IGO Version 3.0
    datasets'
  authors:
  - family-names: Pevehouse
    given-names: Jon CW
  - family-names: Nordstrom
    given-names: Timothy
    orcid: https://orcid.org/0000-0002-1264-9590
  - family-names: McManus
    given-names: Roseanne W
  - family-names: Jamison
    given-names: Anne Spencer
  journal: Journal of Peace Research
  volume: '57'
  issue: '3'
  year: '2020'
  doi: 10.1177/0022343319881175
  start: 492-503
- type: software
  title: 'R: A Language and Environment for Statistical Computing'
  notes: Depends
  url: https://www.R-project.org/
  authors:
  - name: R Core Team
  institution:
    name: R Foundation for Statistical Computing
    address: Vienna, Austria
  year: '2025'
  version: '>= 2.10'
- type: software
  title: countrycode
  abstract: 'countrycode: Convert Country Names and Country Codes'
  notes: Suggests
  url: https://vincentarelbundock.github.io/countrycode/
  repository: https://CRAN.R-project.org/package=countrycode
  authors:
  - family-names: Arel-Bundock
    given-names: Vincent
    email: vincent.arel-bundock@umontreal.ca
    orcid: https://orcid.org/0000-0003-2042-7063
  year: '2025'
  doi: 10.32614/CRAN.package.countrycode
  version: '>= 1.1.0'
- type: software
  title: dplyr
  abstract: 'dplyr: A Grammar of Data Manipulation'
  notes: Suggests
  url: https://dplyr.tidyverse.org
  repository: https://CRAN.R-project.org/package=dplyr
  authors:
  - family-names: Wickham
    given-names: Hadley
    email: hadley@posit.co
    orcid: https://orcid.org/0000-0003-4757-117X
  - family-names: François
    given-names: Romain
    orcid: https://orcid.org/0000-0002-2444-4226
  - family-names: Henry
    given-names: Lionel
  - family-names: Müller
    given-names: Kirill
    orcid: https://orcid.org/0000-0002-1416-3412
  - family-names: Vaughan
    given-names: Davis
    email: davis@posit.co
    orcid: https://orcid.org/0000-0003-4777-038X
  year: '2025'
  doi: 10.32614/CRAN.package.dplyr
  version: '>= 1.0.2'
- type: software
  title: ggplot2
  abstract: 'ggplot2: Create Elegant Data Visualisations Using the Grammar of Graphics'
  notes: Suggests
  url: https://ggplot2.tidyverse.org
  repository: https://CRAN.R-project.org/package=ggplot2
  authors:
  - family-names: Wickham
    given-names: Hadley
    email: hadley@posit.co
    orcid: https://orcid.org/0000-0003-4757-117X
  - family-names: Chang
    given-names: Winston
    orcid: https://orcid.org/0000-0002-1576-2126
  - family-names: Henry
    given-names: Lionel
  - family-names: Pedersen
    given-names: Thomas Lin
    email: thomas.pedersen@posit.co
    orcid: https://orcid.org/0000-0002-5147-4711
  - family-names: Takahashi
    given-names: Kohske
  - family-names: Wilke
    given-names: Claus
    orcid: https://orcid.org/0000-0002-7470-9261
  - family-names: Woo
    given-names: Kara
    orcid: https://orcid.org/0000-0002-5125-4188
  - family-names: Yutani
    given-names: Hiroaki
    orcid: https://orcid.org/0000-0002-3385-7233
  - family-names: Dunnington
    given-names: Dewey
    orcid: https://orcid.org/0000-0002-9415-4582
  - family-names: Brand
    given-names: Teun
    name-particle: van den
    orcid: https://orcid.org/0000-0002-9335-7468
  year: '2025'
  doi: 10.32614/CRAN.package.ggplot2
- type: software
  title: knitr
  abstract: 'knitr: A General-Purpose Package for Dynamic Report Generation in R'
  notes: Suggests
  url: https://yihui.org/knitr/
  repository: https://CRAN.R-project.org/package=knitr
  authors:
  - family-names: Xie
    given-names: Yihui
    email: xie@yihui.name
    orcid: https://orcid.org/0000-0003-0645-5666
  year: '2025'
  doi: 10.32614/CRAN.package.knitr
- type: software
  title: rmarkdown
  abstract: 'rmarkdown: Dynamic Documents for R'
  notes: Suggests
  url: https://pkgs.rstudio.com/rmarkdown/
  repository: https://CRAN.R-project.org/package=rmarkdown
  authors:
  - family-names: Allaire
    given-names: JJ
    email: jj@posit.co
  - family-names: Xie
    given-names: Yihui
    email: xie@yihui.name
    orcid: https://orcid.org/0000-0003-0645-5666
  - family-names: Dervieux
    given-names: Christophe
    email: cderv@posit.co
    orcid: https://orcid.org/0000-0003-4474-2498
  - family-names: McPherson
    given-names: Jonathan
    email: jonathan@posit.co
  - family-names: Luraschi
    given-names: Javier
  - family-names: Ushey
    given-names: Kevin
    email: kevin@posit.co
  - family-names: Atkins
    given-names: Aron
    email: aron@posit.co
  - family-names: Wickham
    given-names: Hadley
    email: hadley@posit.co
  - family-names: Cheng
    given-names: Joe
    email: joe@posit.co
  - family-names: Chang
    given-names: Winston
    email: winston@posit.co
  - family-names: Iannone
    given-names: Richard
    email: rich@posit.co
    orcid: https://orcid.org/0000-0003-3925-190X
  year: '2025'
  doi: 10.32614/CRAN.package.rmarkdown
- type: software
  title: testthat
  abstract: 'testthat: Unit Testing for R'
  notes: Suggests
  url: https://testthat.r-lib.org
  repository: https://CRAN.R-project.org/package=testthat
  authors:
  - family-names: Wickham
    given-names: Hadley
    email: hadley@posit.co
  year: '2025'
  doi: 10.32614/CRAN.package.testthat
  version: '>= 3.0.0'

CodeMeta (codemeta.json)

{
  "@context": "https://doi.org/10.5063/schema/codemeta-2.0",
  "@type": "SoftwareSourceCode",
  "identifier": "igoR",
  "description": "Tools to extract information from the Intergovernmental Organizations ('IGO') Database , version 3, provided by the Correlates of War Project <https://correlatesofwar.org/>. See also Pevehouse, J. C. et al. (2020). Version 3 includes information from 1815 to 2014.",
  "name": "igoR: Intergovernmental Organizations Database",
  "relatedLink": [
    "https://dieghernan.github.io/igoR/",
    "https://CRAN.R-project.org/package=igoR"
  ],
  "codeRepository": "https://github.com/dieghernan/igoR",
  "issueTracker": "https://github.com/dieghernan/igoR/issues",
  "license": "https://spdx.org/licenses/GPL-3.0",
  "version": "0.2.1",
  "programmingLanguage": {
    "@type": "ComputerLanguage",
    "name": "R",
    "url": "https://r-project.org"
  },
  "runtimePlatform": "R version 4.5.1 (2025-06-13 ucrt)",
  "provider": {
    "@id": "https://cran.r-project.org",
    "@type": "Organization",
    "name": "Comprehensive R Archive Network (CRAN)",
    "url": "https://cran.r-project.org"
  },
  "author": [
    {
      "@type": "Person",
      "givenName": "Diego",
      "familyName": "Hernangómez",
      "email": "diego.hernangomezherrero@gmail.com",
      "@id": "https://orcid.org/0000-0001-8457-4658"
    }
  ],
  "copyrightHolder": [
    {
      "@type": "Person",
      "givenName": "Diego",
      "familyName": "Hernangómez",
      "email": "diego.hernangomezherrero@gmail.com",
      "@id": "https://orcid.org/0000-0001-8457-4658"
    }
  ],
  "maintainer": [
    {
      "@type": "Person",
      "givenName": "Diego",
      "familyName": "Hernangómez",
      "email": "diego.hernangomezherrero@gmail.com",
      "@id": "https://orcid.org/0000-0001-8457-4658"
    }
  ],
  "softwareSuggestions": [
    {
      "@type": "SoftwareApplication",
      "identifier": "countrycode",
      "name": "countrycode",
      "version": ">= 1.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=countrycode"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "dplyr",
      "name": "dplyr",
      "version": ">= 1.0.2",
      "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": "ggplot2",
      "name": "ggplot2",
      "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=ggplot2"
    },
    {
      "@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": "testthat",
      "name": "testthat",
      "version": ">= 3.0.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"
    }
  ],
  "softwareRequirements": {
    "1": {
      "@type": "SoftwareApplication",
      "identifier": "R",
      "name": "R",
      "version": ">= 2.10"
    },
    "SystemRequirements": null
  },
  "keywords": [
    "r",
    "igo",
    "correlates-of-war",
    "intergovernmental-organisations",
    "cran",
    "intergovernmental-organizations",
    "r-package",
    "rstats",
    "cran-r"
  ],
  "fileSize": "803.812KB",
  "citation": [
    {
      "@type": "SoftwareSourceCode",
      "datePublished": "2025",
      "author": [
        {
          "@type": "Person",
          "givenName": "Diego",
          "familyName": "Hernangómez"
        }
      ],
      "name": "{igoR}: Intergovernmental Organizations Database",
      "identifier": "10.32614/CRAN.package.igoR",
      "url": "https://dieghernan.github.io/igoR/",
      "@id": "https://doi.org/10.32614/CRAN.package.igoR",
      "sameAs": "https://doi.org/10.32614/CRAN.package.igoR"
    },
    {
      "@type": "ScholarlyArticle",
      "datePublished": "2020",
      "author": [
        {
          "@type": "Person",
          "givenName": "Jon CW",
          "familyName": "Pevehouse"
        },
        {
          "@type": "Person",
          "givenName": "Timothy",
          "familyName": "Nordstrom",
          "@id": "https://orcid.org/0000-0002-1264-9590"
        },
        {
          "@type": "Person",
          "givenName": "Roseanne W",
          "familyName": "McManus"
        },
        {
          "@type": "Person",
          "givenName": "Anne Spencer",
          "familyName": "Jamison"
        }
      ],
      "name": "Tracking organizations in the world: The Correlates of War {IGO} Version 3.0 datasets",
      "identifier": "10.1177/0022343319881175",
      "pagination": "492-503",
      "@id": "https://doi.org/10.1177/0022343319881175",
      "sameAs": "https://doi.org/10.1177/0022343319881175",
      "isPartOf": {
        "@type": "PublicationIssue",
        "issueNumber": "3",
        "datePublished": "2020",
        "isPartOf": {
          "@type": [
            "PublicationVolume",
            "Periodical"
          ],
          "volumeNumber": "57",
          "name": "Journal of Peace Research"
        }
      }
    }
  ],
  "releaseNotes": "https://github.com/dieghernan/igoR/blob/main/NEWS.md",
  "readme": "https://github.com/dieghernan/igoR/blob/main/README.md",
  "contIntegration": [
    "https://github.com/dieghernan/igoR/actions/workflows/check-full.yaml",
    "https://github.com/dieghernan/igoR/actions/workflows/rhub.yaml",
    "https://app.codecov.io/gh/dieghernan/igoR"
  ],
  "developmentStatus": "https://lifecycle.r-lib.org/articles/stages.html#stable"
}

GitHub Events

Total
  • Issues event: 2
  • Delete event: 2
  • Issue comment event: 6
  • Push event: 44
  • Pull request event: 2
  • Fork event: 1
  • Create event: 2
Last Year
  • Issues event: 2
  • Delete event: 2
  • Issue comment event: 6
  • Push event: 44
  • Pull request event: 2
  • Fork event: 1
  • Create event: 2

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 320
  • Total Committers: 6
  • Avg Commits per committer: 53.333
  • Development Distribution Score (DDS): 0.247
Past Year
  • Commits: 59
  • Committers: 3
  • Avg Commits per committer: 19.667
  • Development Distribution Score (DDS): 0.424
Top Committers
Name Email Commits
dieghernan d****o@g****m 241
github-actions[bot] 4****] 32
GitHub Actions a****s@g****m 30
ImgBotApp I****p@g****m 7
dependabot[bot] 4****] 6
imgbot[bot] 3****] 4
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 7 months ago

All Time
  • Total issues: 7
  • Total pull requests: 39
  • Average time to close issues: about 4 hours
  • Average time to close pull requests: 9 days
  • Total issue authors: 2
  • Total pull request authors: 4
  • Average comments per issue: 0.29
  • Average comments per pull request: 1.03
  • Merged pull requests: 29
  • Bot issues: 1
  • Bot pull requests: 25
Past Year
  • Issues: 1
  • Pull requests: 2
  • Average time to close issues: about 1 hour
  • Average time to close pull requests: 13 minutes
  • Issue authors: 1
  • Pull request authors: 2
  • Average comments per issue: 0.0
  • Average comments per pull request: 1.5
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 1
Top Authors
Issue Authors
  • dieghernan (6)
  • github-actions[bot] (1)
Pull Request Authors
  • imgbot[bot] (18)
  • dieghernan (13)
  • dependabot[bot] (6)
  • fossabot (2)
Top Labels
Issue Labels
bot (1)
Pull Request Labels
bot (19) dependencies (6) enhancement (1)

Packages

  • Total packages: 1
  • Total downloads:
    • cran 264 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 7
  • Total maintainers: 1
cran.r-project.org: igoR

Intergovernmental Organizations Database

  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 264 Last month
Rankings
Stargazers count: 21.1%
Forks count: 28.8%
Dependent packages count: 29.8%
Average: 33.4%
Dependent repos count: 35.5%
Downloads: 51.7%
Last synced: 7 months ago

Dependencies

DESCRIPTION cran
  • R >= 2.10 depends
  • countrycode >= 1.1.0 suggests
  • dplyr >= 1.0.2 suggests
  • ggplot2 * suggests
  • knitr * suggests
  • rmarkdown * suggests
  • testthat >= 3.0.0 suggests
.github/workflows/cff-validator.yml actions
  • actions/checkout v3 composite
  • dieghernan/cff-validator main composite
.github/workflows/check-full.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/check-r-package v2 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/cran-status-check.yaml actions
  • actions/checkout v3 composite
  • dieghernan/cran-status-check v1 composite
.github/workflows/lint.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/pkgdown-gh-pages-clean.yaml actions
  • JamesIves/github-pages-deploy-action v4.4.1 composite
  • actions/checkout v3 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/pkgdown-gh-pages.yaml actions
  • JamesIves/github-pages-deploy-action v4.4.1 composite
  • actions/checkout v3 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/test-coverage.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/update-citation-cff.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/setup-r v1 composite
  • r-lib/actions/setup-r-dependencies v1 composite
.github/workflows/update-docs.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/check-r-package v2 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite