Reputation: 41
I've been looking for the solution to this for since long. I need to extract the resultant predicted values on running a Decision tree model on Test dataset in SAS Enterprise Miner. However, I see the fit stats, output, treemap etc but couldn't find a way to retrieve the predicted values.
Could somebody please help? Thank You!
Upvotes: 0
Views: 1907
Reputation: 146
There are a number of different ways you can get the values for your tree model out of Enterprise Miner.
The most simple would be to attach a save data node from the utilities menu after the tree node. From there you only specify the output data library where you want your files to be placed.
You should get three output files, one of those will be a file named tree_test that contains a value starting with P_[your target variable], this will be your resultant predictive value.
Upvotes: 2