Skip to contents

Returns a compact replicate_study handle: registry index fields plus step counts, related studies, and gap tags from the study replication.yml, resolved once. Pass a journal DOI, registry handle (e.g. "rep-template"), or "local" / a study path (see resolve_doi_input()).

Usage

get_study(doi, repo = NULL, folder = NULL)

Arguments

doi

Character. DOI, registry handle, or "local" / study path (see resolve_doi_input()).

repo

Optional repository slug.

folder

Optional registry folder name from index.csv.

Value

An object of class replicate_study.

Details

Besides summary.replicate_study / summary_study() for a console overview, use the handle to:

Examples

if (FALSE) { # \dontrun{
# Fearon & Laitin (APSR 2003)
st <- get_study("10.1017/S0003055403000534")
summary(st)
st$doi
st$languages
st$step_counts
list_replications(st$doi)
describe_study_dag(st$doi)

# Blair et al. (APSR 2022); Acemoglu et al. (AER 2001); template handle
get_study("10.1017/S0003055422000284")
get_study("10.1257/aer.91.5.1369")
get_study("rep-template")

# Reanalysis handle (no journal DOI on the extension itself)
summary_study("rep-10.1017-S0003055403000534--alt-1")
} # }