ipython / ipython/matplotlib-inline

Figures not automatically rendered in some cases

Offen
#22 0 Kommentare 4 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
Vorherrschende Sprache
Jupyter Notebook
Sterne
31
Forks
39
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

I found that in a fresh Jupyter kernel, the following snippet prevents further figures to be rendered:

```python
# cell 1
import matplotlib.pyplot as plt
from matplotlib.dates import DateFormatter

with plt.style.context('seaborn'):
fig, ax = plt.subplots(figsize=(5, 5))
ax.xaxis.set_major_formatter(DateFormatter("%H:%M"))
```

This figure ("cell 1") is rendered, but new figures are not rendered any more in a notebook:

```python
# cell 2
fig, ax = plt.subplots(figsize=(5, 5)) # not rendered
```

The issue does not appear in any of the following case:

- "cell 2" is run before "cell 1": all following figures are then properly rendered
- The `%matplotlib inline` instruction is explicitly added, before or after "cell 1"
- The context manager is not used (but it fails with any stylesheet)
- The `DateFormatter` is not applied

Beitragsleitfaden

Für dieses Repository ist kein Beitragsleitfaden indexiert

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.