当你有一个包含大量因子和相互作用的多层次模型时,固定效应矩阵的相关性大小会变得非常大而且不清楚。
我可以使用print方法中的symbolic.cor=T
参数来更清晰地打印摘要,如下所示:
ratbrain <-
within(read.delim("http://www-personal.umich.edu/~bwest/rat_brain.dat"),
{
treatment <- factor(treatment,
labels = c("Basal", "Carbachol"))
region <- factor(region,
labels = c("BST", "LS", "VDB"))
})
print(mod<-lmer(activate ~ region * treatment + (0 + treatment | animal),ratbrain),symbolic.cor=T)
这为大矩阵绘制了一个更清晰的相关矩阵。尽管这个例子的矩阵并不是那么大。 但如果我可以绘制相关的热图,那将会很好 如何提取固定效果的相关性,以便制作此热图?
编辑:
这是我创建的功能,感谢答案。
fixeff.plotcorr<-function(mod,...)
{
#require(GGally) # contains another correlation plot using ggplot2
require(lme4)
fixNames<-names(fixef(mod))
# Simon O'Hanlon's answer:
# so <- summary(mod)
# df<-as.matrix(so@vcov@factors$correlation) for version lme4<1.0
# df<-as.matrix(so$vcov@factors$correlation) # lme4 >= 1.0
df<-as.matrix(cov2cor(vcov(mod))) #Ben Bolker's solution
rownames(df)<-fixNames
colnames(df)<-abbreviate(fixNames, minlength = 11)
colsc=c(rgb(241, 54, 23, maxColorValue=255), 'white', rgb(0, 61, 104, maxColorValue=255))
colramp = colorRampPalette(colsc, space='Lab')
colors = colramp(100)
cols=colors[((df + 1)/2) * 100]
# I'm using function my.plotcorr which you can download here:
# http://hlplab.wordpress.com/2012/03/20/correlation-plot-matrices-using-the-ellipse-library/
my.plotcorr(df, col=cols, diag='none', upper.panel="number", mar=c(0,0.1,0,0),...)
# Another possibility is the corrplot package:
# cols <- colorRampPalette(c("#67001F", "#B2182B", "#D6604D", "#F4A582", "#FDDBC7",
# "#FFFFFF", "#D1E5F0", "#92C5DE", "#4393C3", "#2166AC", "#053061"))
# require(corrplot,quiet=T)
# corrplot(df, type="upper", method="number", tl.pos='tl', tl.col='black', tl.cex=0.8, cl.pos='n', col=cols(50))
# corrplot(df,add=TRUE, method='ellipse', type='lower', tl.pos='n', tl.col='black', cl.pos='n', col=cols(50), diag=FALSE)
}
您必须从here下载my.plotcorr函数。
上面使用命令fixeff.plotcorr(mod)
的示例的结果图现在看起来像这样:
答案 0 :(得分:6)
我不知道直接方法。但这是解决方法。
diag(diag(1/sqrt(vcov(mod)))) %*% vcov(mod) %*% diag(diag(1/sqrt(vcov(mod))))
答案 1 :(得分:6)
如何使用内置的
cov2cor(vcov(mod))
答案 2 :(得分:4)
使用S4方法列表函数,我们可以返回在类print
的对象上调用"mer"
时调度的函数:
selectMethod( print , "mer" )
查看返回的源代码,我们可以找到适用于您的行:
if (correlation) {
corF <- so@vcov@factors$correlation
so
被定义为对象的摘要,因此在您的情况下,您只需要提取:
so <- summary(mod)
so@vcov@factors$correlation