Displaying 1 result from an estimated 1 matches for "acocar1i".
2011 Nov 25
1
Multiple selection, renaming and saving the results
...tiple selections of gx and gy for all the levels of: sp, block, treat, and when d0!="NA". Then
calculate some spatial functions with the selected gx and gy coordinates, and
save the results with a name according to the selection.
One single
selection could be done and named like that:
acocar1I=subset(data1,(treat=="I"
& data1$block==1 & data1$sp=="acocar" & data1$d0!="NA"))
These are some
of the functions I have to calculate:
acocar1I.spp<-spp(x=acocar1I$gx,
y=acocar1I$gy, window=wA)
acocar1I.dp<-dval(acocar1I.spp,25,2.5,18,20)
And I...