Get conditions and processes to accede memberships
Source: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.
Arguments
- textvar
A text variable
- title
A title variable. NULL by default.
- accession
The "condition" or "process" for parties to accede a treaty. "process" by default.
Details
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.
Examples
if (FALSE) {
m <- manyenviron::texts$AGR_TXT[200:300,]
code_accession_terms(m$Text, m$Title, accession = "condition")
code_accession_terms(m$Text, accession = "process")
code_accession_terms()
}