Teradata Package for Python Function Reference | 17.10 - display_analytic_functions - Teradata Package for Python - Look here for syntax, methods and examples for the functions included in the Teradata Package for Python.

Teradata® Package for Python Function Reference

Product
Teradata Package for Python
Release Number
17.10
Published
April 2022
Language
English (United States)
Last Update
2022-08-19
lifecycle
previous
Product Category
Teradata Vantage
teradataml.analytics.utils.display_analytic_functions = display_analytic_functions()
DESCRIPTION:
    Display list of analytic functions available to use on the Teradata Vantage system, user is connected to.
 
PARAMETERS:
    None
 
RETURNS:
    None
 
RAISES:
    TeradataMlException.
 
EXAMPLES:
    >>> from teradataml import create_context, display_analytic_functions
 
    # Example 1: Displaying a list of available analytic functions
    >>> connection_name = 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.