Add a fact associated with an individual
add_indi_fact(
gedcom,
type,
descriptor = "",
classification = character(),
date = character(),
age = character(),
cause = character(),
user_reference_type = character(),
fact_place = place(),
fact_address = address(),
notes = character(),
responsible_agency = character(),
religious_affiliation = character(),
adoptive_family_xref = character(),
adopting_parent = character(),
multimedia_links = character(),
xref = character(),
update_date_changed = TRUE
)
A tidyged object.
A (case-insensitive) three-letter code giving the type of event or attribute. See Details.
A short description of the attribute (which is not a residence) or 'other' event.
A descriptive word or phrase used to further classify this fact. This should be used whenever the 'other' event/attribute is used (but can also be used with others).
A date_calendar(), date_approximated(), date_period(), or date_range() object giving the timing of the fact.
A character string that indicates the age in years, months, and days that the individual was at the time of the fact. Any combination of these is permitted. Any labels must come after their corresponding number, for example; "4y 8m 10d".
Used in special cases to record the reasons which precipitated an event. Normally this will be used for a death event to show cause of death, such as might be listed on a death certificate.
A user-defined type to associate with an attribute. This argument is mandatory for type = nid and type = att.
A place() object giving the place associated with this fact.
An address() object giving the address associated with this fact.
A character vector of notes accompanying the fact. These could be xrefs to existing Note records.
The organisation, institution, corporation, person, or other entity that has responsibility for the fact.
A name of the religion with which this fact was affiliated.
The xref of the family that adopted this individual. Only used for adoption events.
A code which shows which parent in the associated family adopted this individual. Either "HUSB", "WIFE", or "BOTH".
A character vector of Multimedia record xrefs accompanying this record.
The xref of a record to act on if one is not activated (will override active record).
Whether to add/update the change date for the record.
An updated tidyged object with an expanded Individual record including this fact.
The three-letter codes used for the type parameter are:
Attributes: res(idence), occ(upation), edu(cation), pos(sessions), cas(te), phy(sical description), rel(igion), cit(izenship or nationality), nob(ility title), nid (national ID number), nur (number of relationships), nuc (number of children),
Events: bir(th), dea(th), cen(sus), ado(ption), bap(tism), chr(istening), bur(ial), adu(lt christening), wil(l), gra(duation), pro(bate), ret(irement), cre(mation), bar(-mitvah), bas(-mitzvah), emi(gration), imm(igration), con(firmation), fir(st communion), nat(uralization).
Alternatively eve or att (for any other event or attribute).
If attributes (except residence) or 'other' events/attributes are used then the descriptor argument must be provided.