From 2bf714f79cf2afc56141cffc1a136a70bd22f3d7 Mon Sep 17 00:00:00 2001 From: Nidhi-Sharma9419 <114356358+Nidhi-Sharma9419@users.noreply.github.com> Date: Thu, 7 Dec 2023 09:42:46 +0530 Subject: [PATCH] axis changed to axes --- episodes/08-plot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/08-plot.md b/episodes/08-plot.md index 3782d1cb..51d5f883 100644 --- a/episodes/08-plot.md +++ b/episodes/08-plot.md @@ -364,7 +364,7 @@ ax.tick_params(top=True, right=True) # Looking up the 'axes.edgecolor' rcParams value print(plt.rcParams['axes.edgecolor']) -plt.rcParams['axis.edgecolor'] = 'red' +plt.rcParams['axes.edgecolor'] = 'red' fig = plt.figure(figsize=(10,2.5)) ax = fig.add_subplot(1,1,1)