From 7dfba60859e68f938520a52b42920db56acf1f0b Mon Sep 17 00:00:00 2001 From: mmcky Date: Fri, 23 Oct 2020 12:59:23 +1100 Subject: [PATCH] set matplotlib figsize --- lectures/functions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lectures/functions.md b/lectures/functions.md index 75d78e8b..9ebe170b 100644 --- a/lectures/functions.md +++ b/lectures/functions.md @@ -45,9 +45,10 @@ One of the things we will learn to do is build our own user-defined functions We will 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) ``` ## Function Basics