display_analytic_functions
Description
Display list of analytic functions available to use on the Teradata Vantage system, user is connected to.
Usage
display_analytic_functions (
type = NULL,
name = NULL
)
Arguments
type |
Optional Argument. |
name |
Optional Argument. |
Examples
connection_name = td_create_context(host = host, username=user, password=password)
# Example 1: Displaying a list of all available analytic functions
display_analytic_functions()
# Example 2: When no analytic functions are available on the cluster.
display_analytic_functions(name = "Func_does_not_exists")
# No analytic functions available with connected Teradata Vantage system with provided filters.
# Example 3: List all available SQLE analytic functions.
display_analytic_functions(type = "SQLE")
# Example 4: List all functions with function name containing string "FIT".
display_analytic_functions(name = "FIT")
# Example 5: List all SQLE functions with function name containing string "fit".
display_analytic_functions(type = "SQLE", name = "fit")
# Example 6: List all functions of type "BYOM" or "SQLE" containing "fit" or "pmml".
display_analytic_functions(type = list("SQLE", "BYOM"), name = list("fit", "pmml"))