Hello sas community
Below my sas code and results, so my question is, looking at the figure , i cant differeciate with my 3 BHB levels (red, blue and green) they are crowded together(if the correct word) so if there are any solution in same figurei can separate them with SE include.
Thank you so much
/*************************************/
/* ALL BH classe and DAMDIM */
Data lsmns11_INTR_bhb_ALL;
set lsmns11_INTR_bhb;
IF (Effect eq 'Dam_DIM*BHB_level');
SeUpper = estimate+StdErr;
SeLower = estimate-StdErr;
drop COW_age_CLV_MO dam_lact_no dam_clv_mo Cow_CLv_Mo effect df tvalue probt dam_YOB;
run;
title 'daughter NS vs dam_dim /BHB /ALL, P1';
proc sgplot data=lsmns11_INTR_bhb_ALL;
series x=Dam_DIM y=estimate / group=BHB_level ;
scatter x=Dam_DIM y=estimate / group=BHB_level
yerrorlower=SeLower yerrorupper=SeUpper;
xaxis label="Dam_dim/BHBlevels" values=(38 to 225 by 5);
yaxis label="Estimate/SE" values=(-1.3 to 11 by 0.1);
run;
