Tidy 總結了有關模型組件的信息。模型組件可能是回歸中的單個項、單個假設、聚類或類。 tidy 所認為的模型組件的確切含義因模型而異,但通常是不言而喻的。如果模型具有多種不同類型的組件,您將需要指定要返回哪些組件。
參數
- x
-
從任何
fixest
估計器返回的fixest
對象 - conf.int
-
邏輯指示是否在整理的輸出中包含置信區間。默認為
FALSE
。 - conf.level
-
用於置信區間的置信水平(如果
conf.int = TRUE
)。必須嚴格大於 0 且小於 1。默認為 0.95,對應於 95% 的置信區間。 - ...
-
傳遞給
summary
和confint
的其他參數。重要參數是se
和cluster
。其他參數包括dof
、exact_dof
、forceCovariance
和keepBounded
。請參閱summary.fixest
。
細節
fixest
包提供了一係列函數,用於在 OLS 和 GLM 上下文中估計具有任意數量的 fixed-effects 的模型。該軟件包還通過通用 summary.fixest()
命令支持穩健(即 White)和集群標準錯誤報告。同樣,這些模型的 tidy()
方法允許用戶指定所需的標準誤差校正:1) 通過提供的固定對象隱式指定,或 2) 作為 tidy 調用的一部分顯式指定。請參閱下麵的示例。
請注意,固定置信區間是在假設正態分布的情況下計算的 - 這假設 CI 具有無限的自由度。 (此假設與用於計算標準誤差的自由度不同。有關集群和固定效應的自由度的更多信息,請參閱https://github.com/lrberge/fixest/issues/6和https://github.com/sgaure/lfe/issues/1#issuecomment-530646990)
也可以看看
tidy()
, fixest::feglm()
, fixest::fenegbin()
, fixest::feNmlm()
, fixest::femlm()
, fixest::feols()
, fixest::fepois()
其他最固定的整理器:augment.fixest()
值
帶有列的 tibble::tibble()
:
- conf.high
-
估計置信區間的上限。
- conf.low
-
估計置信區間的下限。
- estimate
-
回歸項的估計值。
- p.value
-
與觀察到的統計量相關的兩側 p 值。
- statistic
-
在回歸項非零的假設中使用的 T-statistic 的值。
- std.error
-
回歸項的標準誤差。
- term
-
回歸項的名稱。
例子
# load libraries for models and data
library(fixest)
gravity <-
feols(
log(Euros) ~ log(dist_km) | Origin + Destination + Product + Year, trade
)
tidy(gravity)
#> # A tibble: 1 × 5
#> term estimate std.error statistic p.value
#> <chr> <dbl> <dbl> <dbl> <dbl>
#> 1 log(dist_km) -2.17 0.154 -14.1 0.00000000119
glance(gravity)
#> # A tibble: 1 × 9
#> r.squared adj.r.squared within.r.squared pseudo.r.squared sigma nobs
#> <dbl> <dbl> <dbl> <dbl> <dbl> <int>
#> 1 0.706 0.705 0.219 NA 1.74 38325
#> # ℹ 3 more variables: AIC <dbl>, BIC <dbl>, logLik <dbl>
augment(gravity, trade)
#> # A tibble: 38,325 × 9
#> .rownames Destination Origin Product Year dist_km Euros .fitted
#> <chr> <fct> <fct> <int> <dbl> <dbl> <dbl> <dbl>
#> 1 1 LU BE 1 2007 140. 2966697 14.1
#> 2 2 BE LU 1 2007 140. 6755030 13.0
#> 3 3 LU BE 2 2007 140. 57078782 16.9
#> 4 4 BE LU 2 2007 140. 7117406 15.8
#> 5 5 LU BE 3 2007 140. 17379821 16.3
#> 6 6 BE LU 3 2007 140. 2622254 15.2
#> 7 7 LU BE 4 2007 140. 64867588 17.4
#> 8 8 BE LU 4 2007 140. 10731757 16.3
#> 9 9 LU BE 5 2007 140. 330702 14.1
#> 10 10 BE LU 5 2007 140. 7706 13.0
#> # ℹ 38,315 more rows
#> # ℹ 1 more variable: .resid <dbl>
# to get robust or clustered SEs, users can either:
# 1) specify the arguments directly in the `tidy()` call
tidy(gravity, conf.int = TRUE, cluster = c("Product", "Year"))
#> # A tibble: 1 × 7
#> term estimate std.error statistic p.value conf.low conf.high
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 log(dist_km) -2.17 0.0760 -28.5 3.88e-10 -2.34 -2.00
tidy(gravity, conf.int = TRUE, se = "threeway")
#> # A tibble: 1 × 7
#> term estimate std.error statistic p.value conf.low conf.high
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 log(dist_km) -2.17 0.175 -12.4 6.08e-9 -2.54 -1.79
# 2) or, feed tidy() a summary.fixest object that has already accepted
# these arguments
gravity_summ <- summary(gravity, cluster = c("Product", "Year"))
tidy(gravity_summ, conf.int = TRUE)
#> # A tibble: 1 × 7
#> term estimate std.error statistic p.value conf.low conf.high
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 log(dist_km) -2.17 0.0760 -28.5 3.88e-10 -2.34 -2.00
# approach (1) is preferred.
相關用法
- R broom tidy.fitdistr 整理 a(n) fitdistr 對象
- R broom tidy.factanal 整理一個事實對象
- R broom tidy.felm 整理 a(n) 毛氈物體
- 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.poLCA 整理 a(n) poLCA 對象
- 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.pairwise.htest 整理 a(n)pairwise.htest 對象
- R broom tidy.coeftest 整理 a(n) coeftest 對象
- R broom tidy.polr 整理 a(n) polr 對象
- R broom tidy.map 整理 a(n) Map對象
- R broom tidy.survexp 整理 a(n) survexp 對象
注:本文由純淨天空篩選整理自等大神的英文原創作品 Tidy a(n) fixest object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。