NonLinearCombineFit
Description
The td_non_linear_combine_fit_sqle()
function returns the target columns and a
specified formula which uses the non-linear combination of existing features.
Notes:
This function requires the UTF8 client character set for UNICODE data.
This function does not support Pass Through Characters (PTCs).
For information about PTCs, see Teradata Vantage™ - Analytics Database International Character Set Support.
This function does not support KanjiSJIS or Graphic data types.
Usage
td_non_linear_combine_fit_sqle (
data = NULL,
target.columns = NULL,
formula = NULL,
result.column = NULL,
...
)
Arguments
data |
Required Argument. |
target.columns |
Required Argument. |
formula |
Required Argument. |
result.column |
Required Argument. |
... |
Specifies the generic keyword arguments SQLE functions accept. Below
are the generic keyword arguments: volatile: Function allows the user to partition, hash, order or local order the input data. These generic arguments are available for each argument that accepts tbl_teradata as input and can be accessed as:
Note: |
Value
Function returns an object of class "td_non_linear_combine_fit_sqle"
which is a named list containing object of class "tbl_teradata".
Named list member(s) can be referenced directly with the "$" operator
using the name(s):
result
output.data
Examples
# Get the current context/connection.
con <- td_get_context()$connection
# Load the example data.
loadExampleData("tdplyr_example", "titanic")
# Create tbl_teradata object.
titanic <- tbl(con, "titanic")
# Check the list of available analytic functions.
display_analytic_functions()
# Example 1 : Create model to obtain total cost for passenger
# using formula ('sibsp' + 'parch' + 1) * 'fare'.
NonLinearCombineFit_out <- td_non_linear_combine_fit_sqle(
data = titanic,
target.columns = c("sibsp", "parch", "fare"),
formula = "Y=(X0+X1+1)*X2",
result.column = "total_cost")
# Print the result tbl_teradata objects.
print(NonLinearCombineFit_out$result)
print(NonLinearCombineFit_out$output.data)