Tabular¶

The simplest data to represent is tabular data, where each row of a column are atomic types like floats, integers or strings.

Creating Tables¶

Data in a 3LC Table is described by a Schema, and for simple tabular data, the schema for each column is a tlc.Schema with a value set to a tlc.ScalarValue. The supported scalar value types are available in the tlc.core.schema module.

Categorical¶

Categorical columns are integer or float columns, decorated with a value map, mapping the value to a display name. See Categorical for more details.