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 302a0cf commit e23ccd1Copy full SHA for e23ccd1
1 file changed
_episodes/05-merging-data.md
@@ -123,7 +123,7 @@ pandas doesn't include the index number for each line.
123
124
~~~
125
# Write DataFrame to CSV
126
-vertical_stack.to_csv('data_output/out.csv', index=False)
+vertical_stack.to_csv('data/out.csv', index=False)
127
128
{: .language-python}
129
@@ -133,7 +133,7 @@ it imports properly.
133
134
135
# For kicks read our output back into Python and make sure all looks good
136
-new_output = pd.read_csv('data_output/out.csv', keep_default_na=False, na_values=[""])
+new_output = pd.read_csv('data/out.csv', keep_default_na=False, na_values=[""])
137
138
139
0 commit comments