Skip to content

Commit e23ccd1

Browse files
author
Jarrod
authored
05-merging-data.md: change output directory name (#488)
There is no `data_output` directory nor has this been created at this point in the lesson.
1 parent 302a0cf commit e23ccd1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_episodes/05-merging-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ pandas doesn't include the index number for each line.
123123

124124
~~~
125125
# Write DataFrame to CSV
126-
vertical_stack.to_csv('data_output/out.csv', index=False)
126+
vertical_stack.to_csv('data/out.csv', index=False)
127127
~~~
128128
{: .language-python}
129129

@@ -133,7 +133,7 @@ it imports properly.
133133

134134
~~~
135135
# 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=[""])
136+
new_output = pd.read_csv('data/out.csv', keep_default_na=False, na_values=[""])
137137
~~~
138138
{: .language-python}
139139

0 commit comments

Comments
 (0)