Names Default to Here( 1 );
// example
dt = Open( "$SAMPLE_DATA/Consumer Prices.jmp" );
tree = dt << Partition(
Y( :Price ),
X( :Date ),
Validation Portion( 0.25 ),
Show Tree( 0 ),
Split History( 1 ),
Informative Missing( 1 ),
By( :Series Full )
);
tree << Go;
Wait( 0 );
tree << Save Prediction Formula;
Names Default to Here( 1 );
// example
dt = Open( "$SAMPLE_DATA/Consumer Prices.jmp" );
tree = dt << Partition(
Y( :Price ),
X( :Date ),
Validation Portion( 0.25 ),
Show Tree( 0 ),
Split History( 1 ),
Informative Missing( 1 ),
By( :Series Full )
);
tree << Go;
Wait( 0 );
tree << Save Prediction Formula;
Thanks!