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 ec3f6f0 commit 8ef6d50Copy full SHA for 8ef6d50
1 file changed
_episodes/04-data-types-and-format.md
@@ -85,6 +85,7 @@ same `surveys.csv` dataset that we've used in previous lessons.
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
@@ -370,6 +371,7 @@ results.
370
371
> > Try looking to the `.isna()` method.
372
> {: .solution}
373
{: .challenge}
374
375
## Writing Out Data to CSV
376
377
We've learned about manipulating data to get desired outputs. But we've also discussed
0 commit comments