Skip to content
Advertisement

Plot don’t refresh when slider updated matplotlib

I can’t figure out why the plot don’t refresh when the slider is updated. I’m using Jupiter notebook and I choose the backend with ‘nbAgg’ parameter.

Initialization code :

JavaScript

There is a animation which lunch this function :

JavaScript

The animation :

JavaScript

Here the slider which stuck me :

JavaScript

This below function don’t work as expected :

JavaScript

Advertisement

Answer

You can try the following:

JavaScript
JavaScript

Few things to note:

  • To plot interactive figures in Jupyter Notebook with matplotlib, you will need to install ipympl after which you can plot interactive Matplotlib figures in Jupyter Notebook using the magic function %matplotlib widget.

  • To update the figure once animation is stored in a variable, you’ll need to call fig.canvas.draw() to redraw the figure.

  • Your implementation wasn’t using (updated) slider value as an argument for the function update since update didn’t require any argument to work. However, widgets are often use to call function with argument(s). For example, check how interact provides an interface in Jupyter Notebook to call a same function with different values of arguments.

    Given this, I modified the update function which takes slider value to update the value of global variable divider.

This means, when calling a function updateData using FuncAnimation with frames as an integer, updateData will be invoked repeatedly with values from range(frames). This means, on every invocation of updateData by FuncAnimation, curr will take a value from range(frames).

Advertisement