Advertisement
Guest User

Untitled

a guest
Sep 24th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.37 KB | None | 0 0
  1. proc sort data=xstd;
  2.       by xgroup;
  3.    run;
  4.    
  5.    ods graphics on;
  6.    proc freq data=xstd order=data;
  7.       tables Z / chisq testp=(0.0258 0.09685 0.13578 0.14344 0.20106 0.27451 0.12268)
  8.                     plots(only)=deviationplot(type=dot);
  9.       weight percent;
  10.       by xgroup;
  11.       title 'Chi square of theoretical distribution';
  12.    run;
  13.    ods graphics off;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement