jupyter / notebook

Jupyter Interactive Notebook
https://jupyter-notebook.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
11.68k stars 4.93k forks source link

Problem with matplotlib's rcParams['figure.figsize'] in the notebook #3583

Open boffi opened 6 years ago

boffi commented 6 years ago

If I change the size of a figure in the cell where I have %matplotlib ... the change is not effective.

%matplotlib inline
import matplotlib.pyplot as plt
plt.rc('figure', figsize=(10,2))
plt.plot((0,1), (1,0));

Please see (after renaming the file) a minimal example of my problem in the attached notebook.

example_ipynb.txt

rileypeterson commented 6 years ago

Duplicate of #3385