search for: chla2

Displaying 1 result from an estimated 1 matches for "chla2".

Did you mean: chla
2005 Jul 28
1
conversion from SAS
...hlorophyll values */ data chla_sep; merge sort_dataset(keep=station date bloom pred ucl lcl) chla_italian (rename=(chl_a=chla)); by station date; * lcl=exp(lcl); * ucl=exp(ucl); * pred=exp(pred); if bloom=. then bloom=1; if bloom=0 then chla1=chla; else chla1=.; if bloom=1 then chla2=chla; else chla2=.; run; symbol1 i=none value=plus color=red; symbol2 i=none value=plus color=green; symbol3 i=join value=none line=1 color=black; axis1 logbase=10; axis1; proc gplot data=chla_sep; plot chla2*date=1 chla1*date=2 (ucl pred lcl)*date=3 /overlay vaxis=axis1; by station; run; q...