November 2018
Beginner to intermediate
214 pages
5h 2m
English
By using the interact method and setting 'x' to 1 by default we get the following points:
# Basic interact usage with integer sliderdef f(x): plt.plot(np.arange(0,10), x*np.arange(0,10)) plt.ylim(-30,30)interact(f, x=1)
We will get the following output:

Read now
Unlock full access