DataFrames for Tables and Views - Teradata Package for Python

Teradata® Package for Python User Guide

Product
Teradata Package for Python
Release Number
17.00
Published
November 2021
Language
English (United States)
Last Update
2022-01-14
dita:mapPath
bol1585763678431.ditamap
dita:ditavalPath
ayr1485454803741.ditaval
dita:id
B700-4006
lifecycle
previous
Product Category
Teradata Vantage

This section provides detailed usage examples of the functions for data management, exploration, preparation in teradataml.

teradataml DataFrame examples documented in this guide require certain datasets to be loaded. Use these commands to load them:
>>> from teradataml import load_example_data
>>> load_example_data("dataframe", ["scale_housing_test", "employee_info", "sales", "admissions_train", "join_table1", "join_table2", "iris_test"])
See load_example_data() Function for more details about 'load_example_data()' utility.

In this section, assume you have a context created with these commands:

>>> from teradataml import create_context, DataFrame
>>> create_context(host = "myhostname", username="myusername", password = "mypassword")