Displaying 1 result from an estimated 1 matches for "msla".
Did you mean:
msa
2004 Jul 16
3
sas to r
...; and "site,"
restricting the species considered to only three of several species in
dat1 (b, c, and p). Moreover, I can output these calculations and
grouping variables to a dataset named "dat2" that will reside in RAM
and include the variables wshed, site, species, mBdA, msla, cBda,
sBdA, ssla, nBda, and nsla.
proc sort data=dat1;
by wshed site species;
proc means data=dat1 noprint mean cv stderr n;
by wshed site species;
where species in ('b', 'c', 'p');
var BdA sla;
output out=dat2
mean=mBdA msla
cv=cBdA csla
stderr=sBdA...