sas - Proc reg qq-plot output data -


i data behind qq-plot generated proc reg in sas. draw plot myself (with additional information)

proc reg data=sashelp.cars;     model invoice = horsepower weight;     plot residual.*nqq.; run; 

qq plot image

i trying check ods outputs, non of them seems have it. or there easy way calculate numbers myself of outputs?

please help. thanks

the solution is:

ods graphics on; proc reg data=sashelp.cars  plots=qqplot;     model invoice = horsepower weight ;     plot residual.*nqq.;     ods output qqplot = qqdata; run; 

blogs.sas.com/content/iml/2012/08/01/data-fro-ods-graphics.h‌​tml


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -