簡體   English   中英

在 R 中使用 multcomp 事后測試嵌套方差分析

[英]Posthoc test nested anova using multcomp in R

我的數據嵌套在組級別。 有五種不同的治療方法。 在每次治療中,四名參與者被分組。 它是關於那些參與者的捐贈行為(因變量 = 捐贈,公制,以歐元為單位)在競爭(解釋變量 = 治療,序數)下。 數據結構是這樣的:

Treatment   Session   player.cumulative_donation:
CG             uk4rlbdo         2.5
CG             uk4rlbdo         1.4 
CG             uk4rlbdo         0
CG             uk4rlbdo         1
CG             dg0bqvit         0
CG             dg0bqvit         0
CG             dg0bqvit         0.5
CG             dg0bqvit         0
TG1            g6n3z46r         1
TG1            g6n3z46r         0
TG1            g6n3z46r         0
TG1            g6n3z46r         0.2

基於Rcompanion計算方差分析后,我想使用 multcomp function 執行事后檢驗。

但是,如果我跑

library(multcomp)

posthoc = glht(model,
               linfct = mcp(Treatment="Tukey"))

我收到這條我不明白的錯誤信息

Error in model.frame.lme(object) : object does not contain any data
Error in factor_contrasts(model) : 
  no ‘model.matrix’ method for ‘model’ found!

model中存有數據:

> model
Linear mixed-effects model fit by REML
  Data: NULL 
  Log-restricted-likelihood: -166.8703
  Fixed: Donation ~ Treatment 
 (Intercept) TreatmentTG1 TreatmentTG2 TreatmentTG3 TreatmentTG4 
   0.7492227    1.3343727    0.2981268    1.4943010    0.5274175 

Random effects:
 Formula: ~1 | Session
        (Intercept) Residual
StdDev:   0.1759392 1.651152

Number of Observations: 88
Number of Groups: 27

變量是:

$ player.cumulative_donation: num  2.5 1.4 0 1 0 0 0.5 0 1 0 ...
$ player.treatmentgroup     : chr  "CG" "CG" "CG" "CG" ...
$ Session code              : chr  "uk4rlbdo" "uk4rlbdo" "uk4rlbdo" "uk4rlbdo" ...

編輯:創建 model 的 R 命令:

library(nlme)

model = lme(Donation ~ Treatment, random=~1|Session,
            method="REML")

anova.lme(model,
          type="sequential",
          adjustSigma = FALSE)

dput(head(SPSS_Data.df,10))的 Output:

structure(list(Participant_id = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 
10), participant.id_in_session = c(1, 2, 3, 4, 1, 2, 3, 1, 2, 
3), participant.code = c("hcj5o43a", "ugiv2jlq", "53vepzb7", 
"j2k7noqy", "njm1sr5d", "c2phh8p1", "5xaot5ii", "lvfkfw72", "05pjmgwp", 
"o0yt5qbt"), `Session code` = c("uk4rlbdo", "uk4rlbdo", "uk4rlbdo", 
"uk4rlbdo", "dg0bqvit", "dg0bqvit", "dg0bqvit", "8stn6uxo", "8stn6uxo", 
"8stn6uxo"), player.cumulative_donation = c(2.5, 1.4, 0, 1, 0, 
0, 0.5, 0, 1, 0), player.treatmentgroup = c("CG", "CG", "CG", 
"CG", "CG", "CG", "CG", "CG", "CG", "CG"), TG_coded = c(0, 0, 
0, 0, 0, 0, 0, 0, 0, 0), CG_Dummy = c(1, 1, 1, 1, 1, 1, 1, 1, 
1, 1), TG1_Dummy = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0), TG2_Dummy = c(0, 
0, 0, 0, 0, 0, 0, 0, 0, 0), TG3_Dummy = c(0, 0, 0, 0, 0, 0, 0, 
0, 0, 0), TG4_Dummy = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0), Gruppe = c(1, 
1, 1, 1, 2, 2, 2, 3, 3, 3), `Perceived Competition` = c(2, 1, 
1, 1, 3, 1, 2, 2, 1, 1), `Influenced behavior` = c(2, 2, 1, 1, 
3, 1, 4, 1, 1, 1), `Donate more` = c(3, 3, 1, 1, 1, 3, 2, 1, 
1, 1), `Donate less` = c(3, 3, 1, 1, 3, 3, 3, 1, 1, 1)), row.names = c(NA, 
10L), class = "data.frame")

如果數據是環境中的變量,則回歸有效,但對於下游分析,他們要求將其作為 data.frame 存儲在 lme object 中:

例如,這非常有效

library(nlme)
library(multcomp)

SPSS_Data.df = data.frame(
"player.treatmentgroup"=sample(c("TG1","TG2","TG3"),100,replace=TRUE),
"player.cumulative_donation"=rnorm(100),
"Session code" = sample(c("uk4rlbdo","dg0bqvit"),100,replace=TRUE),
check.names=FALSE)

df = setNames(SPSS_Data.df[,c("player.cumulative_donation",
"player.treatmentgroup","Session code")],
              c("Donation","Treatment","Session")
              )

model = lme(Donation ~ Treatment, random=~1|Session,data=df)
glht(model,linfct=mcp(Treatment="Tukey"))

而當您將變量放入環境中時,我得到了同樣的錯誤:

Donation = df$Donation
Treatment = df$Treatment
Session =df$Session
model = lme(Donation ~ Treatment, random=~1|Session)
glht(model,linfct=mcp(Treatment="Tukey"))

Error in model.frame.lme(object) : object does not contain any data
Error in factor_contrasts(model) : 
  no ‘model.matrix’ method for ‘model’ found!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM