TableTransformer¶
Learn a transformation for a set of columns in a Table and transform another Table with the same columns.
Inheritors:
DiscretizerFunctionalTableTransformerInvertibleTableTransformerKNearestNeighborsImputerSimpleImputer
Stub code in TableTransformer.sdsstub
isFitted¶
Whether the transformer is fitted.
Type: Boolean
fit¶
Learn a transformation for a set of columns in a table.
Note: This transformer is not modified.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table |
Table |
The table used to fit the transformer. | - |
Results:
| Name | Type | Description |
|---|---|---|
fittedTransformer |
TableTransformer |
The fitted transformer. |
Stub code in TableTransformer.sdsstub
fitAndTransform¶
Learn a transformation for a set of columns in a table and apply the learned transformation to the same table.
Note: Neither this transformer nor the given table are modified.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table |
Table |
The table used to fit the transformer. The transformer is then applied to this table. | - |
Results:
| Name | Type | Description |
|---|---|---|
fittedTransformer |
TableTransformer |
The fitted transformer. |
transformedTable |
Table |
The transformed table. |
Stub code in TableTransformer.sdsstub
transform¶
Apply the learned transformation to a table.
Note: The given table is not modified.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table |
Table |
The table to which the learned transformation is applied. | - |
Results:
| Name | Type | Description |
|---|---|---|
transformedTable |
Table |
The transformed table. |