Deterministic trajectory of a population of Dipsacus sylvestris

import matpopmod as mpm

dipsacus = mpm.examples.dipsacus_sylvestris

traj = dipsacus.trajectory(
  [0, 0, 0, 0, 0, 1], # start from one flowering plant
  t_max = 6
)

mpm.plot.trajectory(
  traj,
  show_classes = [2, 3, 4, 5], # do not show seed classes
  show_legend = "upper left",
  stacked = True
)
../_images/03.png