TD_GLMPredict Syntax | GLMPredict | Teradata Vantage - TD_GLMPredict Syntax - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-02-17
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905
Important: In February 2023 and later releases, the Model alias is changed to ModelTable in the ON clause. You must update your code to use ModelTable.

TD_GLMPredict Syntax Using Partition by Any

TD_GLMPredict (
  ON { table | view | (query) } AS  InputTable [ PARTITION BY ANY ] 
  ON { table | view | (query) } AS  ModelTable DIMENSION
  USING
  IDColumn ('id_column')
  [Accumulate({'accumulate_column'|accumulate_column_range}[,...])]
  [OutputProb ({'true'|'t'|'yes'|'y'|'1'|'false'|'f'|'no','n','0'})]
  [Responses ('response' [,...])]
  [ Family ('Gaussian' | 'Binomial') ] 
)

TD_GLMPredict Syntax Using Partition by Key

TD_GLMPredict (
  ON { table | view | (query) } AS InputTable PARTITION BY partition_by_column 
  ON { table | view | (query) } AS  ModelTable PARTITION BY partition_by_column
  USING
  IDColumn ('id_column')
  [PartitionColumn ('partition_column')]
  [Accumulate({'accumulate_column'|accumulate_column_range}[,...])]
  [OutputProb ({'true'|'t'|'yes'|'y'|'1'|'false'|'f'|'no','n','0'})]
  [Responses ('response' [,...])]
  [ Family ('Gaussian' | 'Binomial') ] 
)
You can call this function from:
  • The FROM clause of a SELECT statement
  • As part of a CREATE TABLE statement
  • As part of a CREATE VIEW statement