display_analytic_functions() | Teradata Package for Python - display_analytic_functions() - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

Use the display_analytic_functions() function to display a list of analytic functions available to use on the Teradata Vantage system that the user is connected to.

Example Setup

>>> from teradataml import create_context, display_analytic_functions

Example 1: Display a list of available analytic functions

>>> create_context(host = host, username=user, password=password)
>>> display_analytic_functions()
    List of available SQLE analytic functions:
      1: Antiselect
      2: Attribution
      3: DecisionForestPredict
      4: DecisionTreePredict
      5: GLMPredict
      6: MovingAverage
      7: NaiveBayesPredict
      8: NaiveBayesTextClassifierPredict
      9: NGrams
      10: NPath
      ...

Example 2: When no analytic functions are available on the cluster

>>> display_analytic_functions()
    No analytic functions available with connected Teradata Vantage system.