TMS BEGIN
The TMS BEGIN
command indicates the beginning of a block of
transformations to be exported to a file in PMML format. The exported transformations can be merged
(using TMS MERGE
) with a PMML model file in order to include any transformations of
the raw data required to create the variables used in the model.
TMS BEGIN
/DESTINATION OUTFILE=’file specification’
Release History
Release 15.0
- Command introduced.
Release 16.0
- Added support for new string
functions
CHAR.CONCAT
,CHAR.LENGTH
, andCHAR.SUBSTR
withinTMS
blocks.
Release 21.0
- Added support for comparison operators and logical operators.
Example
TMS BEGIN
/DESTINATION OUTFILE='/mydir/mytransformations.xml'.
COMPUTE modelvar=ln(var).
TMS END.