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

Teradata® Package for Python User Guide

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Teradata Package for Python
Release Number
20.00
Published
December 2024
ft:locale
en-US
ft:lastEdition
2025-01-23
dita:mapPath
nvi1706202040305.ditamap
dita:ditavalPath
plt1683835213376.ditaval
dita:id
rkb1531260709148
lifecycle
latest
Product Category
Teradata Vantage

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.