pandera.typing.modin.DataFrame¶
- class pandera.typing.modin.DataFrame(data=None, index=None, columns=None, dtype=None, copy=None, query_compiler=None)[source]¶
Representation of dask.dataframe.DataFrame, only used for type annotation.
new in 0.8.0
Attributes
TTranspose index and columns.
atGet a single value for a row/column label pair.
attrsReturn dictionary of global attributes of this dataset.
axesReturn a list representing the axes of the
DataFrame.columnsGet the columns for this
DataFrame.default_dtypedtypesReturn the dtypes in the
DataFrame.emptyIndicate whether
DataFrameis empty.flagsGet the properties associated with this pandas object.
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.
locGet a group of rows and columns by label(s) or a boolean array.
ndimReturn the number of dimensions of the underlying data, by definition 2.
plotMake plots of
DataFrame.shapeReturn a tuple representing the dimensionality of the
DataFrame.sizeReturn an int representing the number of elements in this BasePandasDataset object.
styleReturn a Styler object.
valuesReturn a NumPy representation of the BasePandasDataset.
Methods