Hello,
I am having an issue getting rid of the grey line that's coming up in the middle of my plot. It comes up every time I make a graph with sgplot and I would like to get rid of it. Any help is appreciated! The code and plot are located below.
proc means data=all mean median max min std;
var LAI_mean;
class trt cult week;
output out=meandat mean=averageLAI stderr=stderr;
data reshape(drop=stderr);
set meandat;
lower = averageLAI - stderr;
upper = averageLAI + stderr;
proc sgplot data=reshape;
scatter x=week y=averageLAI /yerrorlower=lower yerrorupper=upper;
series x=week y=averageLAI /group=trt
lineattrs=(pattern=solid thickness=2);
where cult=1;
title1 'LAI cult 1';
run;