I am wondering if anyone can help with this issue
My programe is
ods output "Odds Ratios"=john4;
title "SGPLOT: Forest Plot";
title2 h=8pt "Odds Ratio and 95% Wald Confidence limits";
proc sgplot data=john4;
scatter x=ORest y=study / xerrorlower=LCL
xerrorupper=UCL
markerattrs=or
(symbol=DiamondFilled size=12);
refline 1 / axis=x;
xaxis type=log offsetmin=0 offsetmax=0.3 min=0.01 max=100
minor display=(nolabel);
yaxis discreteorder=data reverse;
run;
The putcome is overlaping values of Odds ratio and 95%CLs
I know is something with the setting of the axis x or y but not sure which and why
Thanks
Kiro