Title: | Visualise GEDCOM Files |
---|---|
Description: | Produce a variety of visualisations for family tree GEDCOM files. |
Authors: | Jamie Lendrum [aut, cre] |
Maintainer: | Jamie Lendrum <[email protected]> |
License: | GPL (>= 3) |
Version: | 0.3.11.9000 |
Built: | 2024-11-03 04:36:24 UTC |
Source: | https://github.com/jl5000/visged |
Generate a family group chart
family_group_chart(gedcom, family, birth_only = FALSE)
family_group_chart(gedcom, family, birth_only = FALSE)
gedcom |
A tidyged object. |
family |
An xref identifying a Family group record. |
birth_only |
Whether to only show biological children. |
A chart showing a family group.
This function creates brief summaries of individuals and relationships formatted for the DiagrammeR::mermaid() function.
node_label(gedcom, xref)
node_label(gedcom, xref)
gedcom |
A tidyged object. |
xref |
The xref of the Individual or Family Group record. |
A string describing a node to use in the DiagrammeR::mermaid() function.
This function creates node styles formatted for the DiagrammeR::mermaid() function.
node_style(gedcom, xref)
node_style(gedcom, xref)
gedcom |
A tidyged object. |
xref |
The xref of the Individual or Family Group record. |
A string describing a node style to use in the DiagrammeR::mermaid() function.
Construct a fact timeline for a family group
timevis_famg(gedcom, xref)
timevis_famg(gedcom, xref)
gedcom |
A tidyged object. |
xref |
The xref of the family group to be plotted. |
Only facts with associated dates are plotted.
A timevis object.
Construct a fact timeline for one or more individuals
timevis_indi(gedcom, xrefs)
timevis_indi(gedcom, xrefs)
gedcom |
A tidyged object. |
xrefs |
The xrefs of the individuals to be plotted. |
Only facts with associated dates are plotted.
A timevis object.