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 - Training Neural Network to play flappy bird with genetic algorithm - Why can't it learn? -

service - Android MediaPlayer calls onCompletion before it already finished -

javascript - Create a stacked percentage column -