Sorry Wendy, I'm modifying the table/variable names to ensure confidentiality...and I wasn't consistent in my 'modified' names. I should have written: data SCORING.DATA_TO_SCORE; set SOURCE.MyData (WHERE=(data_role='Test')); run; data Training.data_train; set SOURCE.MyData (WHERE=(data_role='Train')); run; Anyway, I removed all the code in the .sas Decision Tree model files that appeared between these 2 comments: ****** TEMPORARY VARIABLES FOR FORMATTED VALUES ******; ****** ASSIGN OBSERVATION TO NODE ******; So far it seems to work. However, My model is actually built from 200+ 'sub-models', so I have 200+ files to edit. I guess it can be done with a UNIX command.
... View more