1

したがって、multcompおよびmultcompviewパッケージを RStudio にインストールしました。ただし、cld関数を使用すると、このエラーが発生し続けます

Error in UseMethod("cld") : 
no applicable method for 'cld' applied to an object of class "data.frame"

私のデータは次のとおりです。

Group1 <- c(12.4,10.7,11.9,11.0,12.4,12.3,13.0,12.5,11.2,11.1)
Group2 <- c(8.1,11.5,11.3,8.7,12.7,10.7,9.6,11.3,11.1,13.7)
Group3 <- c(8.5,11.6,10.2,10.9,9.0,9.6,9.9,11.3,10.5,14.2)
Group4 <- c(8.7,9.3,8.2,8.3,9.0,9.4,9.2,12.2,8.5,12.9)
Group5 <- c(12.7,13.2,11.8,11.9,12.2,11.2,13.7,11.8,11.5,9.7)

Combined_Groups<-data.frame(cbind(Group1,Group2,Group3,Group4,Group5))
Combined_Groups #shows spreadsheet like results
summary(Combined_Groups) #min, median, mean, max

Stacked_Groups <- stack(Combined_Groups)
Stacked_Groups #shows the table Stacked_Groups

Anova_Results<-aov(values~ind,data=Stacked_Groups)
summary(Anova_Results) #shows Anova_Results

qf (.95, df1=4, df2=45) #this gives you the critical mean of the F 
distribution

t(apply(Combined_Groups, 2, function(x) c(mean=mean(x), sd=sd(x), 
n=length(x)))) #table of mean,SD,n

tk <-TukeyHSD(Anova_Results)
tk

cld(Combined_Groups, sort = TRUE, by = NULL, Letters = 
"ABCDEFGHIJKLMNOPQRSTUVWXYZ",alpha = 0.05)

cld の正しい形式は何ですか? からの結果を最低の平均から最高の平均に移動し、その下のペアワイズ比較を文字で表示したいと考えています。

4

1 に答える 1