pandahandler.frames.constants

Constants for working with data frames.

Classes

DataframeToDataframe

Protocol for functions that take a data frame and return a data frame.

DataframeToSeries

Protocol for functions that take a data frame and return a series.

Module Contents

class pandahandler.frames.constants.DataframeToDataframe[source]

Bases: Protocol

Protocol for functions that take a data frame and return a data frame.

__name__: str[source]
__call__(df: pandas.DataFrame, *args: Any, **kwargs: Any) pandas.DataFrame[source]

Specify the function signature.

class pandahandler.frames.constants.DataframeToSeries[source]

Bases: Protocol

Protocol for functions that take a data frame and return a series.

__name__: str[source]
__call__(df: pandas.DataFrame, *args: Any, **kwargs: Any) pandas.Series[source]

Specify the function signature.