stratum_retention_dripplot

stratum_retention_dripplot(stratum_retention_policy: ~typing.Any, num_generations: int, do_show: bool = False, ax: ~matplotlib.axes._axes.Axes | None = None, draw_extant_history: bool = True, draw_extinct_history: bool = True, draw_extinct_placeholders: bool = False, progress_wrap: ~typing.Callable = <function <lambda>>) Axes

Show history of retained and purged strata at a particular generation.

Plots position of retained strata within a hereditary stratigraphic column over successive depositions under a particular stratum retention policy.

Parameters

stratum_retention_policyany

Object specifying stratum retention policy.

num_generationsint

Number of generations to plot.

do_showbool, optional

Whether to show() the plot automatically.

axmatplotlib/pylab axes, optional

If a valid matplotlib.axes.Axes instance, the plot is drawn in that Axes. By default (None), a new axes is created.

progress_wrapCallable, default identity function

Wrapper applied around generation iterator and row generator for final phylogeny compilation process.

Pass tqdm or equivalent to display progress bars.