I’ve stuck with an issue that I have a slider but It’s not interactive, I followed by documentation but even ready solution didn’t worked, how to solve that? Not worked in Google Colab and Jupyter Notebook. I have already tried to change matplotlib backend kernel from qt to ktinker but nothing
my code :
JavaScript
x
70
70
1
%matplotlib inline
2
!pip install --upgrade matplotlib
3
4
import numpy as np
5
import matplotlib.pyplot as plt
6
from matplotlib.widgets import Slider, Button
7
8
9
# The parametrized function to be plotted
10
def reliability_graph (t,mu_,lambda_):
11
return (mu_/(lambda_+mu_))+(lambda_/(lambda_+mu_))*np.exp(-(lambda_+mu_)*t)
12
13
t = np.linspace(0, 10,1000)
14
15
# Define initial parameters
16
init_mu = 0
17
init_lambda = 0.1
18
19
# Create the figure and the line that we will manipulate
20
fig, ax = plt.subplots()
21
line, = plt.plot(t, reliability_graph (t,init_mu,init_lambda), lw=2)
22
ax.set_xlabel('Relibility')
23
24
# adjust the main plot to make room for the sliders
25
plt.subplots_adjust(left=0.25, bottom=0.25)
26
27
# Make a horizontal slider to control the frequency.
28
axmu = plt.axes([0.25, 0.1, 0.65, 0.03])
29
mu_slider = Slider(
30
ax=axmu,
31
label='Mu',
32
valmin=0,
33
valmax=1,
34
valinit=init_mu,
35
)
36
37
# Make a vertically oriented slider to control the amplitude
38
axlambda = plt.axes([0.1, 0.25, 0.0225, 0.63])
39
lambda_slider = Slider(
40
ax=axlambda,
41
label="Lambda",
42
valmin=0,
43
valmax=1,
44
valinit=init_lambda,
45
orientation="vertical"
46
)
47
48
49
# The function to be called anytime a slider's value changes
50
def update(val):
51
line.set_ydata(reliability_graph(t, mu_slider.val, lambda_slider.val))
52
fig.canvas.draw_idle()
53
54
55
# register the update function with each slider
56
mu_slider.on_changed(update)
57
lambda_slider.on_changed(update)
58
59
# Create a `matplotlib.widgets.Button` to reset the sliders to initial values.
60
resetax = plt.axes([0.8, 0.025, 0.1, 0.04])
61
button = Button(resetax, 'Reset', hovercolor='0.975')
62
63
64
def reset(event):
65
mu_slider.reset()
66
lambda_slider.reset()
67
button.on_clicked(reset)
68
69
plt.show()
70
My aim is to get a graph with working sliders ,so that I can change values of my parameters interactively. The problem is that sliders aren’t works, they appears as a picture not an interactive object
Advertisement
Answer
I’ve never used sliders or buttons in Colab, but by running your code and introducing the two-point library from the error message, the graph and slider buttons are now enabled.
JavaScript
1
71
71
1
#!pip install ipympl
2
#from google.colab import output
3
#output.enable_custom_widget_manager()
4
5
import numpy as np
6
import matplotlib.pyplot as plt
7
from matplotlib.widgets import Slider, Button
8
%matplotlib widget
9
10
def reliability_graph (t,mu_,lambda_):
11
return (mu_/(lambda_+mu_))+(lambda_/(lambda_+mu_))*np.exp(-(lambda_+mu_)*t)
12
13
t = np.linspace(0, 10,1000)
14
15
# Define initial parameters
16
init_mu = 0
17
init_lambda = 0.1
18
19
# Create the figure and the line that we will manipulate
20
fig, ax = plt.subplots()
21
line, = plt.plot(t, reliability_graph (t,init_mu,init_lambda), lw=2)
22
ax.set_xlabel('Relibility')
23
24
# adjust the main plot to make room for the sliders
25
plt.subplots_adjust(left=0.25, bottom=0.25)
26
27
# Make a horizontal slider to control the frequency.
28
axmu = plt.axes([0.25, 0.1, 0.65, 0.03])
29
mu_slider = Slider(
30
ax=axmu,
31
label='Mu',
32
valmin=0,
33
valmax=1,
34
valinit=init_mu,
35
)
36
37
# Make a vertically oriented slider to control the amplitude
38
axlambda = plt.axes([0.1, 0.25, 0.0225, 0.63])
39
lambda_slider = Slider(
40
ax=axlambda,
41
label="Lambda",
42
valmin=0,
43
valmax=1,
44
valinit=init_lambda,
45
orientation="vertical"
46
)
47
48
49
# The function to be called anytime a slider's value changes
50
def update(val):
51
line.set_ydata(reliability_graph(t, mu_slider.val, lambda_slider.val))
52
fig.canvas.draw_idle()
53
54
55
# register the update function with each slider
56
mu_slider.on_changed(update)
57
lambda_slider.on_changed(update)
58
59
# Create a `matplotlib.widgets.Button` to reset the sliders to initial values.
60
resetax = plt.axes([0.8, 0.025, 0.1, 0.04])
61
button = Button(resetax, 'Reset', hovercolor='0.975')
62
63
64
def reset(event):
65
mu_slider.reset()
66
lambda_slider.reset()
67
68
button.on_clicked(reset)
69
70
plt.show()
71