いくつかの種、それらが収集された宿主植物、およびその収集が雨の日に起こったかどうか(これは実際に重要です!)のカウントデータを含む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
今、私は2つのことを知りたい:種は宿主植物に関連していますか?「雨かどうか」はこの関連付けに影響しますか?私はこれに使用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)
これは私の快適さのレベルから少し外れているので、モデルを正しく設定し、これらの質問にアプローチするための最良の方法であることを確認したかったのです。