ipympl
ipympl copied to clipboard
Matplotlib Jupyter Integration
Should fix #460
## Describe the issue This example plot is failing: ``` %matplotlib ipympl import matplotlib.pyplot as plt import numpy as np fig, ax = plt.subplots() x = np.linspace(0, 2*np.pi, 100) y...
Hello, I am very new to these things thus sorry if I am not giving you enough informations about the issue ! to resume I am trying to plot the...
## Describe the issue ``` %matplotlib widget import matplotlib.pyplot as plt plt.plot([0,1],[0,1]) ``` results in ``` Error displaying widget: model not found ``` The javascript console shows: ``` Could not...
### How to reproduce ``` %matplotlib widget import matplotlib.pyplot as plt import numpy as np fig = plt.figure(1) plt.plot(np.sin(np.linspace(0, 20, 100))) ``` and then ``` plt.close(1) ``` ### Expected behaviour...
As discussed with @ianhi, this is an attempt to (partially) address #138. This would add an additional button to the toolbar associated with a `figure.canvas`. Once clicked, a pdf is...
@tfblum noticed that the save button always saves images in the png format. In `plt.rcParams['savefig.format']`, one can specify the default saving format of `plt.savefig`, and it would be nice if...
There is now a lot of really nice functionality in ipympl, but it is hard to find. The in-depth documentation at ipywidgets is a really good supporting resource, but some...
Hello everyone, I hope everyone has a great day when reading this. Using jupyterlab, I wanted a quick way to plot a set of data with a shared axis, but...
## Describe the issue I built a small GUI within a notebook and had two figures in an ipywidgets HBox object. the latest version of ipympl made it so I...