FAQ/saseg2 - CBU statistics Wiki

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
Type the odd characters out in each group: abz2a 125t7 HhHaHh year.s 5433r21 worl3d

location: FAQ / saseg2

An example using a text file edited in EXCEL as input into SAS using the INFILE command

DATA ONE(keep=id iq y r1 r2 match weight);
  INFILE "C:\Documents and Settings\peterw\Desktop\My Documents\My Do
cuments2\GEES_SAS\gee_import.txt";
  input iq1 iq2 r1 r2;

ID+1;
Y=r1;
MATCH=1;
IQ=iq1;
OUTPUT;

Y=r2;
MATCH=2;
IQ=iq2;
OUTPUT;

DATA TWO;
SET ONE;

match2=0;

if match=1 then do;
   match2 = 0;
end;

if match=2 then do;
   match2 = 1;
end;

run;
proc genmod data=two;
 class id;   
/* scwgt weight; */
 model y = match2 iq /dist=bin;
 repeated subject=id /type=un corrw;
 make 'geercov' out=rcov;
 make 'GEEEmpPest' out=wt;
 run;