Teradata Package for Python Function Reference on VantageCloud Lake - get_transformed_data - Teradata Package for Python - Look here for syntax, methods and examples for the functions included in the Teradata Package for Python.
Teradata® Package for Python Function Reference on VantageCloud Lake
- Deployment
- VantageCloud
- Edition
- Lake
- Product
- Teradata Package for Python
- Release Number
- 20.00.00.08
- Published
- November 2025
- ft:locale
- en-US
- ft:lastEdition
- 2025-12-05
- dita:id
- TeradataPython_FxRef_Lake_2000
- Product Category
- Teradata Vantage
- teradataml.automl.AutoRegressor.get_transformed_data = get_transformed_data(self, data, use_loaded_models=False)
- DESCRIPTION:
Get the transformed data generated during the execution using
data transformation parameters generated during the fit phase.
PARAMETERS:
data:
Required Argument.
Specifies the dataset to be transformed.
Types: teradataml DataFrame
use_loaded_models:
Optional Argument.
Specifies whether to use loaded models for transformation.
Default Value: False
Types: bool
RETURNS:
Dictionary of teradataml DataFrames containing transformed data, where each key represents
feature selection method name and corresponding value holds its transformed dataset.
RAISES:
TeradataMlException, TypeError, ValueError
EXAMPLES:
# Create an instance of the AutoML called "automl_obj" by referring
# "AutoML()" or "AutoRegressor()" or "AutoClassifier()" or
# "AutoFraud()" or "AutoChurn()" or "AutoCluster()" method.
# Example 1: Get transformed data after performing AutoML fit.
# Perform fit() operation on the "automl_obj".
>>> transformed_data = automl_obj.get_transformed_data(admissions_train)
>>> transformed_data
# Example 2: Get transformed data after performing AutoML load.
# Perform load models from the specified table.
>>> transformed_data = automl_obj.get_transformed_data(admissions_train, use_loaded_models=True)
>>> transformed_data