@@ -567,7 +567,7 @@ def __arrow_c_stream__(self, requested_schema=None):
567
567
Export the pandas Series as an Arrow C stream PyCapsule.
568
568
569
569
This relies on pyarrow to convert the pandas Series to the Arrow
570
- format (and follows the default behaviour of ``pyarrow.Array.from_pandas``
570
+ format (and follows the default behavior of ``pyarrow.Array.from_pandas``
571
571
in its handling of the index, i.e. to ignore it).
572
572
This conversion is not necessarily zero-copy.
573
573
@@ -2226,7 +2226,7 @@ def drop_duplicates(
2226
2226
5 hippo
2227
2227
Name: animal, dtype: object
2228
2228
2229
- With the 'keep' parameter, the selection behaviour of duplicated values
2229
+ With the 'keep' parameter, the selection behavior of duplicated values
2230
2230
can be changed. The value 'first' keeps the first occurrence for each
2231
2231
set of duplicated entries. The default value of keep is 'first'.
2232
2232
@@ -3451,7 +3451,7 @@ def sort_values(
3451
3451
4 5.0
3452
3452
dtype: float64
3453
3453
3454
- Sort values ascending order (default behaviour )
3454
+ Sort values ascending order (default behavior )
3455
3455
3456
3456
>>> s.sort_values(ascending=True)
3457
3457
1 1.0
@@ -4098,7 +4098,7 @@ def swaplevel(
4098
4098
4099
4099
In the following example, we will swap the levels of the indices.
4100
4100
Here, we will swap the levels column-wise, but levels can be swapped row-wise
4101
- in a similar manner. Note that column-wise is the default behaviour .
4101
+ in a similar manner. Note that column-wise is the default behavior .
4102
4102
By not supplying any arguments for i and j, we swap the last and second to
4103
4103
last indices.
4104
4104
0 commit comments