I am using this SAS code for Variable Summary report and receiving an error message: log is telling me the variable "auto" and "v1" doesn't exist following SAS Code: ods graphics on; proc cluster method=average std pseudo noeigen outtree=tree; id auto; var v1-v4; run; proc tree horizontal; run;
... View more