Skip to content

Commit dbfad33

Browse files
authored
Merge pull request #379 from gwu-libraries/dropna-378
04-data-types-and-format.md: Correct description of default dropna behavior [#379]
2 parents fb0d008 + 35c12b1 commit dbfad33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_episodes/04-data-types-and-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ surveys_df = pd.read_csv("data/surveys.csv")
324324
~~~
325325
{: .language-python}
326326
Next, let's drop all the rows that contain missing values. We will use the command `dropna`.
327-
By default, dropna removes columns that contain missing data for even just one row.
327+
By default, dropna removes rows that contain missing data for even just one column.
328328
329329
~~~
330330
df_na = surveys_df.dropna()

0 commit comments

Comments
 (0)