Series
One-dimensional ndarray with axis labels (including time series).
The index (axis labels) of the Series. |
The Tensorflow tensor of the data backing this Series or Index. | |
Return Series as ndarray or ndarray-like depending on the dtype. | |
Return the dtype object of the underlying data. | |
Return a tuple of the shape of the underlying data. | |
Number of dimensions of the underlying data, by definition 1. | |
Return the number of elements in the underlying data. |
Cast a Series object to a specified dtype | |
Make a copy of this object’s indices and data. |
[`Series.loc`](series.loc.md) | Access a group of rows and columns by label(s) or a boolean array. |
Purely integer-location based indexing for selection by position. |
Return Addition of series and other, element-wise (binary operator add). | |
Return Subtraction of series and other, element-wise (binary operator sub). | |
Return Multiplication of series and other, element-wise (binary operator mul). | |
Return Floating division of series and other, element-wise (binary operator truediv). | |
Return Modulo of series and other, element-wise (binary operator mod). | |
Return Exponential power of series and other, element-wise (binary operator pow). | |
Round each value in a Series to the given number of decimals. | |