나는 여러 종에 대한 수 데이터, 그들이 수집 한 숙주 식물 및 비오는 날에 그 수집이 일어 났는지 여부와 함께 3 단계 우발 사태 표를 가지고 있습니다 (실제로 중요합니다!). R을 사용하면 가짜 데이터는 다음과 같습니다.
count <- rpois(8, 10)
species <- rep(c("a", "b"), 4)
host <- rep(c("c","c", "d", "d"), 2)
rain <- c(rep(0,4), rep(1,4))
my.table <- xtabs(count ~ host + species + rain)
, , rain = 0
species
host a b
c 12 15
d 10 13
, , rain = 1
species
host a b
c 11 12
d 12 7
이제 두 가지를 알고 싶습니다 : 종은 숙주 식물과 관련이 있습니까? "비"가이 협회에 영향을 미칩니 까? 나는 이것을 위해 사용 loglm()
했다 MASS
:
# Are species independent to host plants, given the effect of rain?
loglm(~species + host + rain + species*rain + host*rain, data=my.table)
# Given any relationship between host plants and species, does rain change it?
loglm(~species + host + rain + species*host)
이것은 내 편안함 수준을 약간 벗어 났으며 모델을 올바르게 설정했는지 와이 질문에 접근하는 가장 좋은 방법인지 확인하고 싶었습니다.