Manipulation/selection#
|
Rename the series. |
|
Append a Series to this one. |
|
Get the index values that would sort this Series. |
|
Return the k smallest elements. |
|
Cast between data types. |
Rounds up to the nearest integer value. |
|
|
Create an empty copy of the current Series, with zero to 'n' elements. |
|
Clip (limit) the values in an array to a min and max boundary. |
|
Clip (limit) the values in an array to a max boundary. |
|
Clip (limit) the values in an array to a min boundary. |
Very cheap deepcopy/clone. |
|
Bin continuous values into discrete categories. |
|
Drop NaN values. |
|
Drop all null values. |
|
Explode a list Series. |
|
|
Extend the memory backed by this Series with the values from another. |
|
Extremely fast method for extending the Series with 'n' copies of a value. |
|
Fill floating point NaN value with a fill value. |
|
Fill null values using the specified value or strategy. |
|
Filter elements by a boolean mask. |
Rounds down to the nearest integer value. |
|
|
Get the first n elements. |
|
Bin values into buckets and count their occurrences. |
|
Fill null values using interpolation. |
|
Return the series as a scalar, or return the element at the given row index. |
|
Get the first n elements. |
|
Create a new Series filled with values from the given index. |
Bin continuous values into discrete categories based on their quantiles. |
|
|
Create a single chunk of memory for this Series. |
|
Rename this Series. |
|
Reshape this Series to a flat Series or a Series of Lists. |
Return Series in reverse order. |
|
Get the lengths of runs of identical values. |
|
Map values to run IDs. |
|
|
Round underlying floating point data by decimals digits. |
|
Sample from this Series. |
|
Set masked values. |
|
Set values at the index locations. |
|
Shift the values by a given period. |
|
Shift the values by a given period and fill the resulting null values. |
Shrink numeric columns to the minimal required datatype. |
|
|
Shrink Series memory usage. |
|
Shuffle the contents of this Series. |
|
Get a slice of this Series. |
|
Sort this Series. |
|
Get the last n elements. |
|
Take values by index. |
Take every nth value in the Series and return as new Series. |
|
|
Get dummy/indicator variables. |
|
Return the k largest elements. |
|
Get unique elements in series. |
|
Get a view into this Series data with a numpy array. |
|
Take values from self or other based on the given mask. |