Tidy 總結了有關模型組件的信息。模型組件可能是回歸中的單個項、單個假設、聚類或類。 tidy 所認為的模型組件的確切含義因模型而異,但通常是不言而喻的。如果模型具有多種不同類型的組件,您將需要指定要返回哪些組件。
參數
- x
-
從調用
Kendall::Kendall()
、Kendall::MannKendall()
或Kendall::SeasonalMannKendall()
返回的Kendall
對象。 - ...
-
附加參數。不曾用過。僅需要匹配通用簽名。注意:拚寫錯誤的參數將被吸收到
...
中,並被忽略。如果拚寫錯誤的參數有默認值,則將使用默認值。例如,如果您傳遞conf.lvel = 0.9
,所有計算將使用conf.level = 0.95
進行。這裏有兩個異常:
值
帶有列的 tibble::tibble()
:
- kendall_score
-
肯德爾得分。
- p.value
-
與觀察到的統計量相關的兩側 p 值。
- var_kendall_score
-
kendall_score 的變體。
- statistic
-
肯德爾的 tau 統計量
- denominator
-
分母,即 tau=kendall_score/分母。
例子
# load libraries for models and data
library(Kendall)
A <- c(2.5, 2.5, 2.5, 2.5, 5, 6.5, 6.5, 10, 10, 10, 10, 10, 14, 14, 14, 16, 17)
B <- c(1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2)
# fit models and summarize results
f_res <- Kendall(A, B)
tidy(f_res)
#> # A tibble: 1 × 5
#> statistic p.value kendall_score denominator var_kendall_score
#> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 0.408 0.0754 34 83.4 345.
s_res <- MannKendall(B)
tidy(s_res)
#> # A tibble: 1 × 5
#> statistic p.value kendall_score denominator var_kendall_score
#> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 0.354 0.102 32 90.3 360
t_res <- SeasonalMannKendall(ts(A))
tidy(t_res)
#> # A tibble: 1 × 5
#> statistic p.value kendall_score denominator var_kendall_score
#> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 0.924 0.000000935 116 126. 559.
相關用法
- 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.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 對象
- R broom tidy.margins 整理 a(n) 邊距對象
- R broom tidy.Arima 整理 a(n) Arima 對象
- R broom tidy.lmRob 整理 a(n) lmRob 對象
- R broom tidy.dist (已棄用)整潔的 dist 對象
注:本文由純淨天空篩選整理自等大神的英文原創作品 Tidy a(n) Kendall object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。