Now we’re
going to learn how to create Q-Q Plot. It is ver simple, just try the codes given below.
proc univariate data= library_name.file_name;
var variable_name
;
qqplot;
run;
or just try,
proc univariate data= .;
qqplot variable_name;
run;
the above code will
creat a Q-Q Plot of a particular variable.
If you want Q-Q
Plot of two varibles the rewrite the above command with
qqplot variable1
variable2;
Similar manner you can try with
any number of variables
No comments:
Post a Comment