Use case: Two simple analytical computations:
- Text analysis: You want to remove some stopwords from a given text.
- Normalization: You want to transform a given set of numbers to normalized values.
Prerequisite steps:
- Connect from the client to a target VantageCloud Lake system where the analytics task are to be performed.
- Import necessary modules for this use case.
from teradatasqlalchemy.types import BIGINT, VARCHAR, FLOAT, INTEGER from collections import OrderedDict import numpy as np import pandas as pd