diff --git a/pybamm/plotting/quick_plot.py b/pybamm/plotting/quick_plot.py index c2ffa38127..17dd471792 100644 --- a/pybamm/plotting/quick_plot.py +++ b/pybamm/plotting/quick_plot.py @@ -464,6 +464,9 @@ def plot(self, t, dynamic=False): ---------- t : float Dimensional time (in 'time_units') at which to plot. + dynamic : bool, optional + If True, creates a dynamic plot with a slider. + """ plt = import_optional_dependency("matplotlib.pyplot") @@ -647,7 +650,7 @@ def dynamic_plot(self, show_plot=True, step=None): Parameters ---------- - step : float + step : float, optional For notebook mode, size of steps to allow in the slider. Defaults to 1/100th of the total time. show_plot : bool, optional @@ -764,11 +767,11 @@ def create_gif(self, number_of_images=80, duration=0.1, output_filename="plot.gi Parameters ---------- - number_of_images : int (optional) + number_of_images : int, optional Number of images/plots to be compiled for a GIF. - duration : float (optional) + duration : float, optional Duration of visibility of a single image/plot in the created GIF. - output_filename : str (optional) + output_filename : str, optional Name of the generated GIF file. """