Identify ethics approval and informed consent statements in text (experimental)
Source:R/rt_ethics.R
rt_ethics.RdThe plain-text counterpart of [rt_ethics_pmc()], with the same rules and the same caveat: the detector is experimental and not yet validated.
Value
A tibble with the file name (`article`), the PMID (`NA` if absent), `is_ethics_pred`, `ethics_text`, `ethics_approval_id`, `is_consent_pred` and `consent_text`.
Examples
rt_ethics(text = c(
"The study was approved by the Ethics Committee of X (approval no. 2021-045).",
"Written informed consent was obtained from all participants."
))
#> # A tibble: 1 × 7
#> article pmid is_ethics_pred ethics_text ethics_approval_id is_consent_pred
#> <chr> <chr> <lgl> <chr> <chr> <lgl>
#> 1 NA NA TRUE The study was… 2021-045 TRUE
#> # ℹ 1 more variable: consent_text <chr>