pandera.typing.modin.Series¶
- class pandera.typing.modin.Series(data=None, index=None, dtype=None, name=None, copy=None, fastpath=<no_default>, query_compiler=None)[source]¶
Representation of pandas.Series, only used for type annotation.
new in 0.8.0
Attributes
TReturn the transpose, which is by definition self.
arrayReturn the ExtensionArray of the data backing this Series or Index.
atGet a single value for a row/column label pair.
attrsReturn dictionary of global attributes of this dataset.
axesReturn a list of the row axis labels.
default_dtypedtypeReturn the dtype object of the underlying data.
dtypesReturn the dtype object of the underlying data.
emptyIndicate whether Series is empty.
flagsGet the properties associated with this pandas object.
hasnansReturn True if Series has any nans.
iatGet a single value for a row/column pair by integer position.
ilocPurely integer-location based indexing for selection by position.
indexGet the index for this DataFrame.
is_monotonic_decreasingReturn True if values in the Series are monotonic_decreasing.
is_monotonic_increasingReturn True if values in the Series are monotonic_increasing.
is_uniqueReturn True if values in the Series are unique.
locGet a group of rows and columns by label(s) or a boolean array.
nameGet the value of the name property.
nbytesReturn the number of bytes in the underlying data.
ndimReturn the number of dimensions of the underlying data, by definition 1.
plotMake plot of Series.
shapeReturn a tuple of the shape of the underlying data.
sizeReturn an int representing the number of elements in this BasePandasDataset object.
valuesReturn Series as ndarray or ndarray-like depending on the dtype.
Methods