R 是否可以在多级数据集中使用位置尺度和形状的广义加性模型 (GAMLSS) 并绘制百分位数?

发布于 2025-01-10 03:11:03 字数 978 浏览 0 评论 0原文

我试图绘制一个变量相对于另一个变量的连续百分位数。我找到了 gamlss 包,它可以让我做很多事情。

data(iris)
(gamlss)
(gamm4)
r1<-gamlss(Sepal.Length~cs(Sepal.Width, 3), sigma.formula=~cs(Sepal.Width, 3), data=iris, family=BCT)

centiles(r1,cent = c(2.5, 5, 10, 50, 90, 95, 97.5), 
         pch=1,cex=0.5,col="black", 
         main="Centile curves for sepal width", 
         iris$Sepal.Width)

输入图片这里的描述

但是,我有多级数据,并且 id 喜欢解释这一点,因为该模型中的上限主要代表分布最高的组。

我找到了 gamm4 包,它似乎可以解释多级数据,但我不确定输出。

r2 <- gamm4(Sepal.Length~s(Sepal.Width),data=iris,random=~(1|Species), family= "poisson")
plot.gam(r2$gam)

输入图片这里的描述

我想知道是否有办法添加百分位数线,或者在多级 GAMLSS 中这是不可能的吗? 另外,输出似乎只给出了关联线/曲线,是否可以显示绝对值?

提前致谢

Im trying to plot continuous percentiles of a variable against another variable. Ive found the package gamlss which lets me do pretty much that.

data(iris)
(gamlss)
(gamm4)
r1<-gamlss(Sepal.Length~cs(Sepal.Width, 3), sigma.formula=~cs(Sepal.Width, 3), data=iris, family=BCT)

centiles(r1,cent = c(2.5, 5, 10, 50, 90, 95, 97.5), 
         pch=1,cex=0.5,col="black", 
         main="Centile curves for sepal width", 
         iris$Sepal.Width)

enter image description here

However, I have multilevel data, and id like to account for that, since the upper limit in this model primarily represents the group with the highest distribution.

Ive found the package gamm4, which seems to account for multilevel data, however im not sure about the output.

r2 <- gamm4(Sepal.Length~s(Sepal.Width),data=iris,random=~(1|Species), family= "poisson")
plot.gam(r2$gam)

enter image description here

I was wondering if there is a way to add percentile lines, or is that not possible in a multilevel GAMLSS?
Also, it seems the output only gives an association line/curve, is it possible to show absolute values?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文