Hi everybody, I would like to obtain a surface plot from PROC RSREG (see example below from SAS Support website) which can be customized by my colleagues, in term of color, fonts, movable elements (such as numbers), .... Would it be possible: . to create this formta of graphs? . if not, would it be possible to retreive the coordinates of the isocurves of this graph in order to construct it in another software (Excel, ...)? Thanking you in advance. Best regards, data d; input Time Temp MBT; label Time = "Reaction Time (Hours)" Temp = "Temperature (Degrees Centigrade)" MBT = "Percent Yield Mercaptobenzothiazole"; datalines; 4.0 250 83.8 20.0 250 81.7 12.0 250 82.4 12.0 250 82.9 12.0 220 84.7 12.0 280 57.9 12.0 250 81.2 6.3 229 81.3 6.3 271 83.1 17.7 229 85.3 17.7 271 72.7 4.0 250 82.0 ; ods graphics on; proc rsreg data=d plots=(ridge surface); model MBT=Time Temp / lackfit; ridge max; run; ods graphics off;
... View more