Skip to content

Commit 33be240

Browse files
authored
Update pandas-series.md
1 parent 372f5ff commit 33be240

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

contrib/pandas/pandas-series.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ Here one thing we should keep in mind that both the series object should have sa
256256

257257
| **Functions** | **Description** |
258258
|--------------------------|---------------------------------------------------|
259-
| `<series>.head(n)` | return the first n elements of the series |
260-
| `<series>.tail(n)` | return the last n elements of the series |
259+
| `<series>.head(n)` | return the first n elements of the series |
260+
| `<series>.tail(n)` | return the last n elements of the series |
261261

262262
```python
263263
import pandas as pd
@@ -282,6 +282,7 @@ dtype: int64
282282
If you dont provide any value to n the by default it give results for `n=5`.
283283

284284
### Few extra functions
285+
285286
| **Function** | **Description** |
286287
|----------------------------------------|------------------------------------------------------------------------|
287288
| `<series_object>.sort_values()` | Return the Series object in ascending order based on its values. |

0 commit comments

Comments
 (0)