DecisionForest Function Syntax | Teradata Vantage - DecisionForest Syntax - Teradata Vantage

Machine Learning Engine Analytic Function Reference

Product
Teradata Vantage
Release Number
9.02
9.01
2.0
1.3
Published
February 2022
Language
English (United States)
Last Update
2022-02-10
dita:mapPath
rnn1580259159235.ditamap
dita:ditavalPath
ybt1582220416951.ditaval
dita:id
B700-4003
lifecycle
previous
Product Category
Teradata Vantageā„¢

Version 2.30

SELECT * FROM DecisionForest (
  ON { table | view | (query) } AS InputTable
  OUT TABLE OutputTable (output_table)
  [ OUT TABLE OutputMessageTable (output_message_table) ]
  USING
  ResponseColumn ('response_column')
  [ NumericInputs ('numeric_input_column' [,...]) ]
  [ CategoricalInputs ('categorical_input_column' [,...]) ]
  [ CategoricalEncoding ({ 'GrayCode' | 'Hashing' }) ]
  [ 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) ]
  [ IDColumn (id_column) ]
) AS alias;