Skip to content

Commit 6b1b64e

Browse files
authored
Update python-pandas.qmd
Typos
1 parent 6f7a2e2 commit 6b1b64e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

python-pandas.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Introduction to Python and Pandas
3-
author: Kevin Nota, Robin Warner, and Maxime Borry
3+
author: Kevin Nota, Robin Warner, Rémi Denise, and Maxime Borry
44
---
55

66
::: {.callout-note}
@@ -1336,10 +1336,10 @@ Looking at the data, can you figure out what might cause this?
13361336
::: {.callout-note collapse="true" title="Answer"}
13371337

13381338
When we look at the highest earners, we see that somebody put _666666_ as their income.
1339-
This is much higher than any other income, which makes the histogram very draged out to include this person.
1339+
This is much higher than any other income, which makes the histogram very dragged out to include this person.
13401340

13411341
```{.python eval=False}
1342-
merged_df[merged_df["Income"].sort_values(ascending=False)]
1342+
merged_df["Income"].sort_values(ascending=False)
13431343
```
13441344
:::{.callout-note collapse="true"}
13451345
## Expand to see output

0 commit comments

Comments
 (0)