From b6414ed318a7874d2425632c93a2a5d259751af0 Mon Sep 17 00:00:00 2001 From: mmcky Date: Fri, 23 Oct 2020 13:05:47 +1100 Subject: [PATCH] adjust matplotlib figsize --- lectures/python_oop.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lectures/python_oop.md b/lectures/python_oop.md index 87617db2..7cbe0d90 100644 --- a/lectures/python_oop.md +++ b/lectures/python_oop.md @@ -61,9 +61,10 @@ It takes a little while to get used to the syntax so we'll provide plenty of exa We'll use the following imports: ```{code-cell} ipython +%matplotlib inline import numpy as np import matplotlib.pyplot as plt -%matplotlib inline +plt.rcParams['figure.figsize'] = (10,6) ``` ## OOP Review