Hello Laura-
A SAS data set that contains the variables and the split values (boundaries) is created when you run the Interactive Grouping node with the Create Grouping Data property set to Yes. (By default the property is set to No.)
For details within the Enterprise Miner user interface, select Help -> Contents -> SAS Credit Scoring -> Interactive Grouping Node -> Interactive Grouping Node Report Properties -> Create Grouping Data. (See also the Information Value Cutoff property in the Score section.)
Here is a link in case you prefer online documentation.
https://go.documentation.sas.com/doc/en/emref/15.2/p1qzwz7onopjqcn11uc04i18urg7.htm#p17c0h1gbzz3kfn12lmwaus2bk4u
That example shows how to view the data. An easy way to save the data from that example is to add a SAS Code node to the same diagram, and run code like this:
title 'these are the available SAS data sets'; /* see the node log for the results */ proc datasets lib=&EM_LIB.; run; quit;
title 'check to make sure that you have the one that you want'; /* note the use of double-dot in the macro */ proc print data=&EM_LIB..Ign_exportgroup; run;
/* use your own libref instead of WORK */ data work.mygroups; set &EM_LIB..Ign_exportgroup; run;
Have a good week.
... View more