abacusai.dataset_column

Module Contents

Classes

DatasetColumn

A schema description for a column

class abacusai.dataset_column.DatasetColumn(client, name=None, dataType=None, featureType=None, originalName=None)

Bases: abacusai.return_class.AbstractApiClass

A schema description for a column

Parameters
  • client (ApiClient) – An authenticated API Client instance

  • name (str) – The unique name of the column.

  • dataType (str) – The underlying data type of each column: INTEGER, FLOAT, STRING, DATE, DATETIME, BOOLEAN, LIST, STRUCT. Refer to the (guide on data types)[https://api.abacus.ai/app/help/class/DataType] for more information.

  • featureType (str) – Feature Type of the Feature

  • originalName (str) – The original name of the column

__repr__(self)

Return repr(self).

to_dict(self)

Get a dict representation of the parameters in this class

Returns

The dict value representation of the class parameters

Return type

dict