Skip to content

Commit de77feb

Browse files
committed
typo (choose/chose)
1 parent edfd8df commit de77feb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,14 +348,14 @@ df1['weight'].mean()
348348
38.751976145601844
349349
```
350350

351-
We can fill `NaN` values with any value that we chose. The code below fills all
351+
We can fill `NaN` values with any value that we choose. The code below fills all
352352
`NaN` values with a mean for all weight values.
353353

354354
```python
355355
df1['weight'] = surveys_df['weight'].fillna(surveys_df['weight'].mean())
356356
```
357357

358-
We could also chose to create a subset of our data, only keeping rows that do
358+
We could also choose to create a subset of our data, only keeping rows that do
359359
not contain `NaN` values.
360360

361361
The point is to make conscious decisions about how to manage missing data. This

0 commit comments

Comments
 (0)