From 054ebb0cba3eae5cab79d4364a2595b02e7a4d06 Mon Sep 17 00:00:00 2001 From: maneesha <829690+maneesha@users.noreply.github.com> Date: Wed, 21 Feb 2024 10:31:01 -0500 Subject: [PATCH] another typo --- episodes/05-merging-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/05-merging-data.md b/episodes/05-merging-data.md index cd96ca98f..5384bb174 100644 --- a/episodes/05-merging-data.md +++ b/episodes/05-merging-data.md @@ -125,7 +125,7 @@ have been repeated. We can reindex the new DataFrame using the `reset_index()` m ### Writing Out Data to CSV -We can use the `to_csv` command to do export a DataFrame in CSV format. Note that the code +We can use the `to_csv` command to export a DataFrame in CSV format. Note that the code below will by default save the data into the current working directory. We can save it to a different folder by adding the foldername and a slash to the file `vertical_stack.to_csv('foldername/out.csv')`. We use the `index=False` so that