We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e7ff19 commit 534c31bCopy full SHA for 534c31b
1 file changed
_episodes/04-data-types-and-format.md
@@ -83,6 +83,9 @@ types, let's explore the format of our survey data. We'll be working with the
83
same `surveys.csv` dataset that we've used in previous lessons.
84
85
~~~
86
+# Make sure pandas is loaded
87
+import pandas as pd
88
+
89
# Note that pd.read_csv is used because we imported pandas as pd
90
surveys_df = pd.read_csv("data/surveys.csv")
91
0 commit comments