From 4e7a5ccbcfb601e3697666ec822cd024c01a203a Mon Sep 17 00:00:00 2001 From: mmcky Date: Fri, 16 Feb 2024 11:17:01 +1100 Subject: [PATCH] use figsize from qe manual --- lectures/inflation_history.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/inflation_history.md b/lectures/inflation_history.md index 661fac63..b0593240 100644 --- a/lectures/inflation_history.md +++ b/lectures/inflation_history.md @@ -58,7 +58,7 @@ We start by installing a library we will use followed by importing some Python m import numpy as np import pandas as pd import matplotlib -matplotlib.rcParams['figure.figsize'] = (12, 10) +matplotlib.rcParams['figure.figsize'] = (13, 7) import matplotlib.pyplot as plt import matplotlib.dates as mdates ```