mmhh i think the FRINGE plot is not a good solution for me.
Do you maybe have an idea how i can do an errorplot (mean, mean+std, mean-std) in Gplot?
I tried it with:
proc sql;
create table try as
select time_value,mean(score) as mean format=6.2,
mean(score)-std(score) as std
from test
group by time
union
select time_value,mean(score) as mean format=6.2,
mean(score)+std(score) as std
from test
group by time;
symbol2 color=black
interpol=stdtj
cv=black
ci=black
line=1
value=dot;
axis1 label=('Time [min]')order=(-60 TO 360 BY 60);
axis2 label=(angle=90 'score') order=(0 to 12 by 1) value=(color=black);
proc gplot data=try;
where std NE . and time NE . ;
format mean std 3.0;
plot (std mean)*time/ overlay
haxis=axis1
vaxis=axis2;
run;
quit;
but it doesnt work properly... Any other idea?
Thanks! Marie