From 86c82fb802730534cd361a58bcbdb491674e327a Mon Sep 17 00:00:00 2001 From: Nathaniel D Porter Date: Thu, 27 Jun 2024 09:19:44 -0400 Subject: [PATCH] Remove h1 in tidy.md Replace the h1 (`#`) in line 19 with an h2 (`##`). It appears that having an h1 prevents the automated display of h2 titles in the navigation pane at the left side of the lesson and this change should resolve the issue. --- episodes/tidy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/tidy.md b/episodes/tidy.md index 216c69fe..619f28b2 100644 --- a/episodes/tidy.md +++ b/episodes/tidy.md @@ -16,7 +16,7 @@ exercises: 10 :::::::::::::::::::::::::::::::::::::::::::::::::: -# Tidy Data in Pandas +## Tidy Data in Pandas Let's import the pickle file that contains all of our Chicago public library circulation data in a single DataFrame. We can use the Pandas `.read_pickle()` method to do so.