Cheap 95% CI in Proc Print

PHOTO EMBED

Mon Nov 20 2023 20:54:29 GMT+0000 (Coordinated Universal Time)

Saved by @ddover ##table

Proc Print Data=app.FGCIFtable_&yvar._&coh noobs label;
   Var timelist / style(data)={just=center};
   Var CIF      / style(data)={font_weight=bold just=center};
   Var CIF_LCL  / style(data)={font_weight=light font_style=italics just=right};
   Var CIF_UCL  / style(data)={font_weight=light font_style=italics just=left} style(header)={just=left};
   label timelist="Year";
   label CIF_LCL ="95%";
   label CIF_UCL ="CI";
   format CIF: percent9.1;
run;
content_copyCOPY