Returns all name variants of an person or a specific name used on a given date. This function is particularly relevant for MPs who changed their names (e.g., due to marriage or divorce).
Value
A dataframe containing name variant(s) of the specified person with the following columns:
index: Sequential index of name variantspad_intern: Person's unique identification numbername: Full name with titles and formattingdate_start: Start date when this name variant was valid (Date)date_end: End date when this name variant was valid (Date, NA if currently valid)name_clean: Cleaned version of the name without titlesname_family: Family name/surnamename_given: Given name/first namenote: Raw value from the source data
See also
get_pad_intern() to retrieve an MP's pad_intern
Examples
if (FALSE) { # \dontrun{
get_names(44127) # Philippa Pia Beck, Philippa Pia Strache
get_names(44127, latest = TRUE) # Philippa Pia Beck, formerly Strache
get_names(44127, date = "01/01/2023") # Philippa Pia Strache
# Multiple pad_interns possible:
# e.g. Michael Pock/Bernhard; Freda Blau-Meissner/Meissner-Blau
get_names(c(1130, 83124))
} # }
