DecisionForest Syntax - Teradata Vantage

Machine Learning Engine Analytic Function Reference

Product
Teradata Vantage
Release Number
8.00
1.0
Published
May 2019
Language
English (United States)
Last Update
2019-11-22
dita:mapPath
blj1506016597986.ditamap
dita:ditavalPath
blj1506016597986.ditaval
dita:id
B700-4003
lifecycle
previous
Product Category
Teradata Vantage™

Version 2.10

SELECT * FROM DecisionForest (
  ON { table | view | (query) } AS InputTable
  OUT TABLE OutputTable (output_table)
  [ OUT TABLE MonitorTable (monitor_table) ]
  USING
  ResponseColumn ('response_column')
  [ NumericInputs ({ 'numeric_input_column' | numeric_input_column_range }[,...]) ]
  [ CategoricalInputs ({ 'categorical_input_column' | categorical_input_column_range }[,...]) ]
  [ TreeType ( { 'regression' | 'classification' } ) ]
  [ NumTrees (number_of_trees) ]
  [ TreeSize (tree_size) ]
  [ MinNodeSize (min_node_size) ]
  [ Variance (variance) ]
  [ MaxDepth (max_depth) ]
  [ Mtry (mtry) ]
  [ MtrySeed (mtryseed) ]
  [ OutOfBag ({'true'|'t'|'yes'|'y'|'1'|'false'|'f'|'no'|'n'|'0'}) ]
  [ DisplayNumProcessedRows {'true'|'t'|'yes'|'y'|'1'|'false'|'f'|'no'|'n'|'0'} ]
  [ Seed (seed) ]
) AS alias;