pandera.typing.pyspark.Series¶
- class pandera.typing.pyspark.Series(data=None, index=None, dtype=None, name=None, copy=False, fastpath=False)[source]¶
Representation of pandas.Series, only used for type annotation.
new in 0.8.0
Attributes
TReturn the transpose, which is self.
atAccess a single value for a row/column label pair.
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.
emptyReturns true if the current object is empty.
hasnansReturn True if it has any missing values.
iatAccess a single value for a row/column pair by integer position.
ilocPurely integer-location based indexing for selection by position.
indexThe index (axis labels) Column of the Series.
is_monotonic_decreasingReturn boolean if values in the object are monotonically decreasing.
is_monotonic_increasingReturn boolean if values in the object are monotonically increasing.
is_uniqueReturn boolean if values in the object are unique
locAccess a group of rows and columns by label(s) or a boolean Series.
nameReturn name of the Series.
ndimReturn an int representing the number of array dimensions.
shapeReturn a tuple of the shape of the underlying data.
sizeReturn an int representing the number of elements in this object.
valuesReturn a Numpy representation of the DataFrame or the Series.
Methods