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
T
Transpose index and columns.
at
Access a single value for a row/column label pair.
axes
Return a list representing the axes of the DataFrame.
columns
The column labels of the DataFrame.
default_dtype
dtypes
Return the dtypes in the DataFrame.
empty
Returns true if the current DataFrame is empty.
iat
Access a single value for a row/column pair by integer position.
iloc
Purely integer-location based indexing for selection by position.
index
The index (row labels) Column of the DataFrame.
loc
Access a group of rows and columns by label(s) or a boolean Series.
ndim
Return an int representing the number of array dimensions.
shape
Return a tuple representing the dimensionality of the DataFrame.
size
Return an int representing the number of elements in this object.
style
Property returning a Styler object containing methods for building a styled HTML representation for the DataFrame.
values
Return a Numpy representation of the DataFrame or the Series.
Methods