Hi, On the below link you can find the User's Guide: High-Performance Procedures for all versions of SAS: SAS/STAT Check you version, and look at the appropriate description. It seems in SAS/STAT 14.1 HPSPIT syntax will more similar to the other SAS/STAT procedures (class statement, model statement). You can write the predictions of HPSPLIT to a dataset than use standard tools to produce ROC curve (PROC SGPLOT) or CV matrix (PROC MEANS). You can also use PROC LOGISTIC with the nofit option to produce "automatically" ROC: SAS/STAT(R) 13.2 User's Guide To produce tree graphs you could: - Use PROC NETDRAW. It is part of SAS/OR (I think it is available on SAS OnDemand for Academics😞 SAS/OR(R) 13.2 User's Guide: Project Management - Calculate the layout of the tree than use lines circles, polygons, etc. to draw it (SGPLOT). Not easy. - Output the structure of the tree to a text file, than use a graph drawing tool like GraphViz. (Sorry, I know it is not available on SAS OnDemand for Academics, but if you download that text file, you can run a locally installed GraphViz on it.) - Generate interactive tree with SAS/GRAPH: SAS/GRAPH(R) 9.4: Java Applets and ActiveX Control User's Guide (Check technical requirements here.)
... View more