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()).
Arguments
- doi
Character. DOI, registry handle, or
"local"/ study path (seeresolve_doi_input()).- repo
Optional repository slug.
- folder
Optional registry folder name from
index.csv.
Details
Besides summary.replicate_study / summary_study() for a
console overview, use the handle to:
Inspect fields programmatically (
st$doi,st$handle,st$title,st$languages,st$step_counts,st$related,st$gaps,st$repo, ...).Feed DOI / handle strings into other consumer verbs — e.g.
list_replications(),run_replication(),check_replication()(via a local path),describe_study_dag(),get_code()— which take character keys, not the handle object itself:list_replications(st$doi)ordescribe_study_dag(st$handle).Filter or join against
load_index()/search_papers()results, or share the same resolved context with Shiny / reports.
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")
} # }
