当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R plot.intervals.lmList 绘制 lmList 置信区间图


R语言 plot.intervals.lmList 位于 nlme 包(package)。

说明

生成线性模型系数的置信区间网格dot-plot,每个系数都有不同的面板。 dot-plot 中的行对应于用于生成 xlmList 对象的 lm 组件的名称。置信下限和上限通过线段连接,估计系数用 "+" 标记。

这是基于包 lattice 中的函数 dotplot()

用法

## S3 method for class 'intervals.lmList'
plot(x, xlab = "", ylab = attr(x, "groupsName"),
     strip = function(...) strip.default(..., style = 1),
     ...)

参数

x

继承自类 "intervals.lmList" 的对象,表示用于生成 xlmList 对象的 lm 组件中的系数的置信区间和估计值。

xlab , ylab

轴标签,每个标签都有一个合理的默认值。

strip

functionFALSE ,请参阅包 lattice 中的 dotplot()

...

传递给 dotplot 函数的可选参数(见上文)。

网格图,其中包含生成 xlmList 的各个 lm 组件的系数的置信区间。

例子

fm1 <- lmList(distance ~ age | Subject, Orthodont)
plot(intervals(fm1))

作者

José Pinheiro and Douglas Bates bates@stat.wisc.edu

也可以看看

intervals.lmList , lmList , dotplot

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Plot lmList Confidence Intervals。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。