Schema
PrimaryKey
Primary key
ForeignKey
Column
Enumeration of column types. Supported types are: TEXT, CATEGORICAL, BOOLEAN, NUMERIC, INTEGER, DATETIME, DATE, TIME, COORDINATES, ITAFISCALCODE.
Table
__init__
__init__(
columns: dict[str, Column | ForeignKey | PrimaryKey]
| None = None,
**kwargs: Column | ForeignKey | PrimaryKey,
) -> None
Class representing a table in a relational dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
columns
|
dict[str, Column | ForeignKey | PrimaryKey] | None
|
Dictionary mapping each feature column to a |
None
|
**kwargs
|
Column | ForeignKey | PrimaryKey
|
Additional |
{}
|