diff --git a/src/wela/plotting.py b/src/wela/plotting.py index f7fa0c246be62c41bf62f906ebc36c4ae437a194..39ce89583f44bb36566e9a054f7f2ffd8b5d67ee 100644 --- a/src/wela/plotting.py +++ b/src/wela/plotting.py @@ -203,7 +203,7 @@ def plot_lineages( shade_colour="gold", ): """ - Wrapper of plot_lineage to plot a range of idx values. + Wrap plot_lineage to plot a range of idx values. Parameters ---------- @@ -576,10 +576,10 @@ def plot_cuml_divisions_per_cell(t, buddings, nboots=30, col="b", label=None): Example ------- - >>> import matplotlib.pylab as plt >>> from wela.plotting import plot_cuml_divisions_per_cell + >>> t, buddings = dl.get_time_series("buddings", group="BY4741") >>> plt.figure() - >>> plot_cuml_divisions_per_cell(t, b, label="Gal Glu") + >>> plot_cuml_divisions_per_cell(t, buddings, label="Gal Glu") >>> plt.legend() >>> plt.show(block=False) """