當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。