R/code_accession.R
code_accession_terms.Rd
The function extracts information on the conditions for parties to become part of a treaty or the different processes to become a treaty member.
code_accession_terms(textvar, title = NULL, accession = NULL)
A list of the accession conditions or processes.
The function helps provide metadata on accession to treaties allowing researchers to connect and compare this information. The processes relate to how new members accede treaty and include treaty signature, treaty ratification, notification of consent, or majority vote. The conditions for treaty accession include entity type or area, a certain issue-domain, open membership for all, or nomination of new members.
if (FALSE) { # \dontrun{
m <- manyenviron::agreements$HUGGO[200:300,] %>%
dplyr::select(Title, Beg, MainText, AppendixText, AnnexText)
code_accession_terms(m$MainText, m$Title, accession = "condition")
code_accession_terms(m$MainText, accession = "process")
code_accession_terms()
} # }