I am trying to do a simplified "meta-analysis" for a school project, so I made an excel sheet to import into SAS. I have attached screen shots of some of my output. When I try to find CMH summary statistics, my table looks all wonky and I am not sure how to go about fixing it. How do I get rid of those zeroes? data meta; infile "C:\Users\David\Documents\meta.csv" dlm=',' dsd; input ID author $ pubyear sdesign $ expvar $ ocvar $ ex:12. unexp:12. total:12.; run; proc print data=meta; run; proc means data=meta mean q1 median q3 range; var ex unexp total; run; proc freq data=meta; table sdesign*ex*unexp /cmh; weight total; run;
... View more