Beispielsweise können Sie mithilfe des
Output Delivery System direkt mit statistischen Prozeduren
hochauflösende Grafiken erstellen:
Und so geht’s:
ods graphics on;
proc reg data=sashelp.class plots=diagnostic;
model height=weight;
run;
ods graphics off;
|