SQL-MapReduce - Aster Analytics

Teradata AsterĀ® Analytics Foundation User GuideUpdate 2

Product
Aster Analytics
Release Number
7.00.02
Published
September 2017
Language
English (United States)
Last Update
2018-04-17
dita:mapPath
uce1497542673292.ditamap
dita:ditavalPath
AA-notempfilter_pdf_output.ditaval
dita:id
B700-1022
lifecycle
previous
Product Category
Software

Because the response variable has a normal distribution, the Family is Gaussian. The Alpha value, 0.1, specifies an elastic net model.

SELECT * FROM glm2 (
  ON (SELECT 1) PARTITION BY 1
  InputTable ('glm2_elastic_net')
  ModelTable ('glm2_elastic_net_model')
  RegularizationTable ('glm2_3regularization')
  InputColumns ('gnp_deflator','gnp','armed_forces','population')
  ResponseColumn ('employed')
  Family ('GAUSSIAN')
  Intercept ('TRUE')
  NumLambdas('10')
  Alpha ('0.1')
);