We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found that in a fresh Jupyter kernel, the following snippet prevents further figures to be rendered:
# 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:
# cell 2 fig, ax = plt.subplots(figsize=(5, 5)) # not rendered
The issue does not appear in any of the following case:
%matplotlib inline
DateFormatter
The text was updated successfully, but these errors were encountered:
workaround for ipython/matplotlib-inline#22
a5d8836
No branches or pull requests
I found that in a fresh Jupyter kernel, the following snippet prevents further figures to be rendered:
This figure ("cell 1") is rendered, but new figures are not rendered any more in a notebook:
The issue does not appear in any of the following case:
%matplotlib inline
instruction is explicitly added, before or after "cell 1"DateFormatter
is not appliedThe text was updated successfully, but these errors were encountered: