Skip to content

Commit 6c10ebb

Browse files
authored
Update python-pandas.qmd
Small typos in the text
1 parent dfb6738 commit 6c10ebb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python-pandas.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ To print a range of rows, the first and last index can be written with a `:`.
527527
To print the second and third row, this would be `[1:2, :]`.
528528

529529
```{.python eval=False}
530-
df.loc[1:2]
530+
df.loc[1:2, :]
531531
```
532532
::: {.callout-note collapse="true"}
533533
## Expand to see output
@@ -843,7 +843,7 @@ dtype: float64
843843
```
844844
:::
845845

846-
There are also ceartin functions that are usfule for non-numeric columns.
846+
There are also certain functions that are useful for non-numeric columns.
847847
To know which stings are present in a `object`, the fuction `unique()` can be used, this will returns an `array` with the unique values in the column or row.
848848

849849
```{.python eval=False}

0 commit comments

Comments
 (0)