Skip to content

Commit

Permalink
proper figure resizing in a Jupyter notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
gnperdue committed May 20, 2020
1 parent 934908f commit 1fb201e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Python.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -425,3 +425,10 @@ import sys
def is_dataframe(x):
return isinstance(x, getattr(sys.modules.get('pandas'), 'DataFrame', None))
```

### proper figure resizing in a Jupyter notebook

```
from IPython.core.pylabtools import figsize
figsize(11, 9)
```

0 comments on commit 1fb201e

Please sign in to comment.