ColumnDescriptor#

from tmlt.analytics import ColumnDescriptor
class tmlt.analytics.ColumnDescriptor(column_type, allow_null=False, allow_nan=False, allow_inf=False)#

Bases: object

Information about a column.

ColumnDescriptors have the following attributes:

column_type#

A ColumnType, specifying what type this column has.

allow_null#

bool. If True, this column allows null values.

allow_nan#

bool. If True, this column allows NaN values.

allow_inf#

bool. If True, this column allows infinite values.