Skip to content
Advertisement

Use slider to choose which graph to show

Suppose I want to show three simulations by reading three .xlsx files. Next, I want to design a slider to choose which simulation to show. If I move the slider to 0, then 0 will be the input to the function “update()”. The first simulation will be shown.

The following is the code:

JavaScript

If I move the slider, “ddd” gives you a list of 0, 1 or 2.

However, 3D-simulation does not show up. How to modify the code?

enter image description here

Advertisement

Answer

I’m using JupyterLab. I need %matplotlib widget for any kind of interactive matplotlib plot. The below code works fine, but won’t work without %matplotlib widget.

warning: %matplotlib widget is not the same as import matplotlib.widget

You didn’t provide any sample data, so I just made up some data. Basically the structure of your code was not correct, the if part should be inside the def on_value_change(change):. See the code below:

JavaScript

Output:

enter image description here enter image description here enter image description here

ask again if my explanation is somehow unclear.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement