Skip to content

getml.pipeline.column.Column dataclass

Column(
    index: int,
    name: str,
    marker: str,
    table: str,
    target: str,
    importance: float = np.nan,
)

Dataclass that holds data about a single column.

PARAMETER DESCRIPTION
index

The index of the column.

TYPE: int

name

The name of the column.

TYPE: str

marker

The marker of the column.

TYPE: str

table

The table the column is from.

TYPE: str

target

The target the column is associated with.

TYPE: str

importance

The importance of the column.

TYPE: float DEFAULT: nan