ODS PDF - verzerrte Grafiken
Verfasst von Arjun am 26 Januar, 2009 - 16:59
Hallo,
mit folgender Prozedur erstelle ich einen QQ-Plot. Sobald ich mit dem ODS Statement die Ausgabe in ein PDF umwandele wird meine Grafik horizontal gestaucht (bei landscape option) bzw vertikal (bei der Standardeinstellung Portrait).
Gibt es eine Möglichkeit die Grafik normal im pdf ausgeben zu lassen?
Danke!
options papersize="ISO A4" orientation=LANDSCAPE;
options nobyline;
ods pdf file=pred_1_qq-Plot.pdf';
title 'QQ-Plot';
symbol v=plus;
title 'Normal Q-Q Plot';
proc univariate data=pred_1 noprint;
class Mac Gap;
by Gen ;
qqplot pth ppw wtm ctm cvs spd act imb stp rst rtm rdu bur bdu tor ssp
/ normal (mu=est sigma=est color=yellow)
cframe = ligr
square
vaxis=axis1;
axis1 label=(a=90 r=0);
/* Format _Var_ $varfmt. Mac $macfmt.; */
run;
options nobyline;
ods pdf file=pred_1_qq-Plot.pdf';
title 'QQ-Plot';
symbol v=plus;
title 'Normal Q-Q Plot';
proc univariate data=pred_1 noprint;
class Mac Gap;
by Gen ;
qqplot pth ppw wtm ctm cvs spd act imb stp rst rtm rdu bur bdu tor ssp
/ normal (mu=est sigma=est color=yellow)
cframe = ligr
square
vaxis=axis1;
axis1 label=(a=90 r=0);
/* Format _Var_ $varfmt. Mac $macfmt.; */
run;
title 'QQ-Plot';
quit;
ods pdf close;
»
- Anmelden oder Registrieren um Kommentare zu schreiben
