pandera.typing.pyspark.DataFrame¶
- class pandera.typing.pyspark.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False)[source]¶
Representation of dask.dataframe.DataFrame, only used for type annotation.
new in 0.8.0
Attributes
TTranspose index and columns.
atAccess a single value for a row/column label pair.
axesReturn a list representing the axes of the DataFrame.
columnsThe column labels of the DataFrame.
default_dtypedtypesReturn the dtypes in the DataFrame.
emptyReturns true if the current DataFrame is empty.
iatAccess a single value for a row/column pair by integer position.
ilocPurely integer-location based indexing for selection by position.
indexThe index (row labels) Column of the DataFrame.
locAccess a group of rows and columns by label(s) or a boolean Series.
ndimReturn an int representing the number of array dimensions.
shapeReturn a tuple representing the dimensionality of the DataFrame.
sizeReturn an int representing the number of elements in this object.
styleProperty returning a Styler object containing methods for building a styled HTML representation for the DataFrame.
valuesReturn a Numpy representation of the DataFrame or the Series.
Methods