Displaying 2 results from an estimated 2 matches for "island1".
Did you mean:
island
2005 Jun 09
1
Plot/manage spatial boundary data
...epth
1 -75.42481 35.58192 16.172
2 -75.40726 35.58567 18.045
3 -75.41351 35.60312 17.333
4 -75.38888 35.58959 20.787
5 -75.39495 35.60706 19.834
6 -75.36964 35.59370 20.950
7 -75.37556 35.61159 20.941
8 -75.35530 35.61660 23.107
9 -75.34950 35.59800 22.960
10 -75.33418 35.62194 23.934
>island1<-c(2,3,4,2)
>water<-c(1,3,5,7,8,10)
> land<-c(1,2,4,6,9,10)
> plot(geom$lon[land],geom$lat[land],pch='.',t='l')
lines(geom$lon[water],geom$lat[water],pch='.',t='l',col="blue")
lines(geom$lon[island1],geom$lat[island1],pch='.',t=&...
2007 Mar 30
0
problem using mcmcsamp() with glmer models containing interaction terms in fixed effects
...sson distributed]
visit <- c(rep(0, 50), rep(1,50)) # sample visit number, 0 or 1 to indicate
pre and post no-fishing reserve establishment
zone <- as.factor(rep(c(rep("blue", 25), rep("green",25)),2)) #
inside/outside no-fishing reserve
region <- as.factor(rep(c("island1", "island2"),50)) # spatial grouping
factor
data1 <- data.frame(counts, visit, zone, region)
rm (counts, visit, zone, region)
# a quick look
bwplot(I(sqrt(counts))~as.factor(visit)|region, data=data1)
# two lmer models
lmer1 <- lmer (counts~visit+visit:zone + (1|region), dat...