Revision b4fd42b2256e32a18f4b6661e3558f602df8d775 authored by Charles J. Geyer on 30 June 2013, 00:00:00 UTC, committed by Gabor Csardi on 30 June 2013, 00:00:00 UTC
1 parent c451938
Raw File
reaster1.R

 library(aster)

 data(radish)

 options(digits=4) # avoid rounding differences

 pred <- c(0,1,2)
 fam <- c(1,3,2)

 rout <- reaster(resp ~ varb + fit : (Site * Region), ~ 0 + fit : Block,
     pred, fam, varb, id, root, data = radish)
 summary(rout)
 summary(rout, stand = FALSE)

back to top