scipy2017-jupyter-widgets-tutorial icon indicating copy to clipboard operation
scipy2017-jupyter-widgets-tutorial copied to clipboard

Notebooks for the SciPy 2017 tutorial "The Jupyter Interactive Widget Ecosystem"

Results 10 scipy2017-jupyter-widgets-tutorial issues
Sort by recently updated
recently updated
newest added

``` %matplotlib qt from ipywidgets import interact, interactive, fixed, interact_manual import ipywidgets as widgets import matplotlib.pyplot as plt import numpy as np def f(m, b): plt.figure(2) x = np.linspace(-10, 10,...

It complains about 0.3.2 despite being installed. The --no-deps is to prevent it from updating numpy to 1.13 via pip when conda installed numpy 1.12. ``` (widgets-2017) ✘-INT ~/src/p/scipy2017_tutorials/scipy2017-jupyter-widgets-tutorial [master...

From the outline: - [x] Container widget, pieces of kids, good for protoyping, needs example. - [x] Subclass, e.g., `Box` or `VBox` - [ ] Include, as a cautionary tale,...

Some of the layout is already done as part of the container exercises. Not sure how much of the model to have them code.