Install Python Script Files | Sentiment Analysis | Teradata Open Analytics Framework - Install the Python Script Files - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798
  1. Install the Python script into the user environment.
    demo_env.install_file(file_path = os.path.join(path_to_files, 'files', 'nltk.py'), replace = True)
  2. Verify the files have been installed correctly.
    demo_env.files
  3. Load the data into VantageCloud Lake.
    types = OrderedDict(text=VARCHAR)
    test_data = read_csv(os.path.join(path_to_files, 'files', 'ex2data.csv'),
                         table_name='sample_dataSet_py',
                         types=types,
                         save_errors=True, catch_errors_warnings=True
                         )