Tidy 總結了有關模型組件的信息。模型組件可能是回歸中的單個項、單個假設、聚類或類。 tidy 所認為的模型組件的確切含義因模型而異,但通常是不言而喻的。如果模型具有多種不同類型的組件,您將需要指定要返回哪些組件。
用法
# S3 method for polr
tidy(
x,
conf.int = FALSE,
conf.level = 0.95,
exponentiate = FALSE,
p.values = FALSE,
...
)
參數
- x
-
從
MASS::polr()
返回的polr
對象。 - conf.int
-
邏輯指示是否在整理的輸出中包含置信區間。默認為
FALSE
。 - conf.level
-
用於置信區間的置信水平(如果
conf.int = TRUE
)。必須嚴格大於 0 且小於 1。默認為 0.95,對應於 95% 的置信區間。 - exponentiate
-
邏輯指示是否對係數估計值取冪。這對於邏輯回歸和多項回歸來說是典型的,但如果沒有 log 或 logit 鏈接,那麽這是一個壞主意。默認為
FALSE
。 - p.values
-
邏輯性強。是否應根據
MASS::dropterm()
的卡方檢驗返回 p 值。默認為 FALSE。 - ...
-
附加參數。不曾用過。僅需要匹配通用簽名。注意:拚寫錯誤的參數將被吸收到
...
中,並被忽略。如果拚寫錯誤的參數有默認值,則將使用默認值。例如,如果您傳遞conf.lvel = 0.9
,所有計算將使用conf.level = 0.95
進行。這裏有兩個異常:
細節
在 broom 0.7.0
中, coefficient_type
列已重命名為 coef.type
,並且內容也發生了更改。現在內容是 coefficient
和 scale
,而不是 coefficient
和 zeta
。
使用 dropterm()
函數計算 p.values 是 MASS 包作者建議的方法。這種方法的計算量很大,因此僅在明確請求時才返回p.values。此外,它僅適用於不包含兩個以上類別的變量的模型。如果不滿足此條件,則會顯示一條消息並返回 NA 而不是 p 值。
也可以看看
其他序號整理器:augment.clm()
, augment.polr()
, glance.clmm()
, glance.clm()
, glance.polr()
, glance.svyolr()
, tidy.clmm()
, tidy.clm()
, tidy.svyolr()
值
帶有列的 tibble::tibble()
:
- conf.high
-
估計置信區間的上限。
- conf.low
-
估計置信區間的下限。
- estimate
-
回歸項的估計值。
- p.value
-
與觀察到的統計量相關的兩側 p 值。
- statistic
-
在回歸項非零的假設中使用的 T-statistic 的值。
- std.error
-
回歸項的標準誤差。
- term
-
回歸項的名稱。
例子
# load libraries for models and data
library(MASS)
# fit model
fit <- polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing)
# summarize model fit with tidiers
tidy(fit, exponentiate = TRUE, conf.int = TRUE)
#>
#> Re-fitting to get Hessian
#> # A tibble: 8 × 7
#> term estimate std.error statistic conf.low conf.high coef.type
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <chr>
#> 1 InflMedium 1.76 0.105 5.41 1.44 2.16 coefficie…
#> 2 InflHigh 3.63 0.127 10.1 2.83 4.66 coefficie…
#> 3 TypeApartment 0.564 0.119 -4.80 0.446 0.712 coefficie…
#> 4 TypeAtrium 0.693 0.155 -2.36 0.511 0.940 coefficie…
#> 5 TypeTerrace 0.336 0.151 -7.20 0.249 0.451 coefficie…
#> 6 ContHigh 1.43 0.0955 3.77 1.19 1.73 coefficie…
#> 7 Low|Medium 0.609 0.125 -3.97 NA NA scale
#> 8 Medium|High 2.00 0.125 5.50 NA NA scale
glance(fit)
#> # A tibble: 1 × 7
#> edf logLik AIC BIC deviance df.residual nobs
#> <int> <dbl> <dbl> <dbl> <dbl> <int> <int>
#> 1 8 -1740. 3495. 3539. 3479. 1673 1681
augment(fit, type.predict = "class")
#> # A tibble: 72 × 6
#> Sat Infl Type Cont `(weights)` .fitted
#> <ord> <fct> <fct> <fct> <int> <fct>
#> 1 Low Low Tower Low 21 Low
#> 2 Medium Low Tower Low 21 Low
#> 3 High Low Tower Low 28 Low
#> 4 Low Medium Tower Low 34 High
#> 5 Medium Medium Tower Low 22 High
#> 6 High Medium Tower Low 36 High
#> 7 Low High Tower Low 10 High
#> 8 Medium High Tower Low 11 High
#> 9 High High Tower Low 36 High
#> 10 Low Low Apartment Low 61 Low
#> # ℹ 62 more rows
fit2 <- polr(factor(gear) ~ am + mpg + qsec, data = mtcars)
tidy(fit, p.values = TRUE)
#>
#> Re-fitting to get Hessian
#> p-values can presently only be returned for models that contain
#> no categorical variables with more than two levels
#> # A tibble: 8 × 6
#> term estimate std.error statistic p.value coef.type
#> <chr> <dbl> <dbl> <dbl> <lgl> <chr>
#> 1 InflMedium 0.566 0.105 5.41 NA coefficient
#> 2 InflHigh 1.29 0.127 10.1 NA coefficient
#> 3 TypeApartment -0.572 0.119 -4.80 NA coefficient
#> 4 TypeAtrium -0.366 0.155 -2.36 NA coefficient
#> 5 TypeTerrace -1.09 0.151 -7.20 NA coefficient
#> 6 ContHigh 0.360 0.0955 3.77 NA coefficient
#> 7 Low|Medium -0.496 0.125 -3.97 NA scale
#> 8 Medium|High 0.691 0.125 5.50 NA scale
相關用法
- R broom tidy.poLCA 整理 a(n) poLCA 對象
- R broom tidy.power.htest 整理 a(n) power.htest 對象
- R broom tidy.pairwise.htest 整理 a(n)pairwise.htest 對象
- R broom tidy.pyears 整理 a(n) pyears 對象
- R broom tidy.plm 整理 a(n) plm 對象
- R broom tidy.prcomp 整理 a(n) prcomp 對象
- R broom tidy.pam 整理 a(n) pam 對象
- R broom tidy.robustbase.glmrob 整理 a(n) glmrob 對象
- R broom tidy.acf 整理 a(n) acf 對象
- R broom tidy.robustbase.lmrob 整理 a(n) lmrob 對象
- R broom tidy.biglm 整理 a(n) biglm 對象
- R broom tidy.garch 整理 a(n) garch 對象
- R broom tidy.rq 整理 a(n) rq 對象
- R broom tidy.kmeans 整理 a(n) kmeans 對象
- R broom tidy.betamfx 整理 a(n) betamfx 對象
- R broom tidy.anova 整理 a(n) anova 對象
- R broom tidy.btergm 整理 a(n) btergm 對象
- R broom tidy.cv.glmnet 整理 a(n) cv.glmnet 對象
- R broom tidy.roc 整理 a(n) roc 對象
- R broom tidy.emmGrid 整理 a(n) emmGrid 對象
- R broom tidy.Kendall 整理 a(n) Kendall 對象
- R broom tidy.survreg 整理 a(n) survreg 對象
- R broom tidy.ergm 整理 a(n) ergm 對象
- R broom tidy.coeftest 整理 a(n) coeftest 對象
- R broom tidy.map 整理 a(n) Map對象
注:本文由純淨天空篩選整理自等大神的英文原創作品 Tidy a(n) polr object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。