amici.plotting

Plotting

Plotting related functions

Functions

plot_expressions(exprs, rdata)

Plot the given expressions evaluated on the given simulation outputs.

plot_jacobian(rdata)

Plot Jacobian as heatmap.

plot_observable_trajectories(rdata[, ...])

Plot observable trajectories.

plot_state_trajectories(rdata[, ...])

Plot state trajectories.

amici.plotting.plot_expressions(exprs, rdata)[source]

Plot the given expressions evaluated on the given simulation outputs.

Parameters:
Return type:

None

amici.plotting.plot_jacobian(rdata)[source]

Plot Jacobian as heatmap.

amici.plotting.plot_observable_trajectories(rdata, observable_indices=None, ax=None, model=None, prefer_names=True, marker=None, edata=None)[source]

Plot observable trajectories.

Parameters:
Return type:

None

amici.plotting.plot_state_trajectories(rdata, state_indices=None, ax=None, model=None, prefer_names=True, marker=None)[source]

Plot state trajectories.

Parameters:
  • rdata (amici.numpy.ReturnDataView) – AMICI simulation results as returned by amici.amici.runAmiciSimulation().

  • state_indices (collections.abc.Sequence[int] | None) – Indices of state variables for which trajectories are to be plotted.

  • ax (matplotlib.axes._axes.Axes | None) – matplotlib.pyplot.Axes instance to plot into.

  • model (amici.amici.Model) – The model rdata was generated from.

  • prefer_names (bool) – Whether state names should be preferred over IDs, if available.

  • marker

    Point marker for plotting (see matplotlib documentation).

Return type:

None