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; 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.html
Comments
Post a Comment