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

T

Transpose index and columns.

at

Get a single value for a row/column label pair.

attrs

Return dictionary of global attributes of this dataset.

axes

Return a list representing the axes of the DataFrame.

columns

Get the columns for this DataFrame.

default_dtype

dtypes

Return the dtypes in the DataFrame.

empty

Indicate whether DataFrame is empty.

flags

Get the properties associated with this pandas object.

iat

Get a single value for a row/column pair by integer position.

iloc

Purely integer-location based indexing for selection by position.

index

Get the index for this DataFrame.

loc

Get a group of rows and columns by label(s) or a boolean array.

ndim

Return the number of dimensions of the underlying data, by definition 2.

plot

Make plots of DataFrame.

shape

Return a tuple representing the dimensionality of the DataFrame.

size

Return an int representing the number of elements in this BasePandasDataset object.

style

Return a Styler object.

values

Return a NumPy representation of the BasePandasDataset.

Methods