DataFrames for Tables and Views - Teradata Python Package

Teradata® Python Package User Guide

Product
Teradata Python Package
Release Number
16.20
Published
February 2020
Language
English (United States)
Last Update
2020-02-29
dita:mapPath
rkb1531260709148.ditamap
dita:ditavalPath
Generic_no_ie_no_tempfilter.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")