Skip to contents

Given a retracted work's DOI, return the records the corpus links to it, such as a later correction or reinstatement, to help decide what (if anything) to cite instead.

Usage

suggest_alternatives(doi)

Arguments

doi

A DOI (of the retracted work).

Value

A tibble of related records (record_id, title, nature, date), or NULL if the DOI is unknown or has no related records.

Examples

# \donttest{
suggest_alternatives("10.1016/S0140-6736(97)11096-0")
#> # A tibble: 1 × 4
#>   record_id title                                              nature date      
#>   <chr>     <chr>                                              <chr>  <date>    
#> 1 17269     Ileal-lymphoid-nodular Hyperplasia, Non-specific … Corre… 2004-03-06
# }