ods graphics on; proc transreg data=sashelp.iris ss2 plots=fit(nocli noclm); ods output coef=coef; model ide(sepallength) = class(species / zero=none) | ide(petallength); run; data coef2(drop=coef: label); length Group $ 10; do i = 1 to 3; set coef(keep=label coefficient) point=i; Group = scan(label, 3); Int = coefficient; j = i + 3; set coef(keep=label coefficient) point=j; Slope = coefficient; output; end; stop; run; data all; merge sashelp.iris coef2; Row = ifn(_n_ le 30, _n_ - 1, .); run; proc print data=all; var species group int slope; where group ne ' '; run; data attrmap; retain id 'variety'; length value markerstyleelement $ 12; input value; markerstyleelement = cats('GraphData', _n_); textstyleelement = markerstyleelement; linestyleelement = markerstyleelement; datalines; Setosa Versicolor Virginica ;