Skip to content

Commit f07961e

Browse files
authored
adjust matplotlib figsize (#86)
1 parent 4c7c843 commit f07961e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lectures/python_oop.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ It takes a little while to get used to the syntax so we'll provide plenty of exa
6161
We'll use the following imports:
6262

6363
```{code-cell} ipython
64+
%matplotlib inline
6465
import numpy as np
6566
import matplotlib.pyplot as plt
66-
%matplotlib inline
67+
plt.rcParams['figure.figsize'] = (10,6)
6768
```
6869

6970
## OOP Review

0 commit comments

Comments
 (0)