[PAL编程规范]SAP HANA PAL指数回归预测分析Exponential Regression编程规范FORECASTWITHEXPR(预测) 沧海

指数回归预测分析模型编程规范:http://www.cnblogs.com/omygod/archive/2013/05/15/3079517.html

1. 生成规范

CALL SYSTEM.AFL_WRAPPER_GENERATOR ( ' <pr ocedure name>','AFLPAL','FORECASTWITHEXPR',  <signature table>);

其中signature表应该具有的记录:

image

2. 调用方式

CALL <procedure name> ( < data input table>, <coefficient input table>, <parameter table>, <output table>) with overview;

其中<procedure name>应该是在第一条规则中生成的存储过程的名称。

< data input table>, <coefficient input table>, <parameter table>, <output table>应该和signature表中定义的类型保持一致。

3. Signature表

image

image

image

原文地址:https://www.cnblogs.com/omygod/p/3079526.html