Tidy 總結了有關模型組件的信息。模型組件可能是回歸中的單個項、單個假設、聚類或類。 tidy 所認為的模型組件的確切含義因模型而異,但通常是不言而喻的。如果模型具有多種不同類型的組件,您將需要指定要返回哪些組件。
參數
- x
-
從
stats::smooth.spline()
返回的smooth.spline
對象。 - ...
-
附加參數。不曾用過。僅需要匹配通用簽名。注意:拚寫錯誤的參數將被吸收到
...
中,並被忽略。如果拚寫錯誤的參數有默認值,則將使用默認值。例如,如果您傳遞conf.lvel = 0.9
,所有計算將使用conf.level = 0.95
進行。這裏有兩個異常:
也可以看看
augment()
, stats::smooth.spline()
其他平滑樣條整理器:augment.smooth.spline()
值
恰好隻有一行和一列的 tibble::tibble()
:
- crit
-
最小化標準
- cv.crit
-
交叉驗證分數
- df
-
模型使用的自由度。
- lambda
-
選擇對應於 `spar` 的 lambda。
- nobs
-
使用的觀察數。
- pen.crit
-
處罰標準。
- spar
-
平滑參數。
例子
# fit model
spl <- smooth.spline(mtcars$wt, mtcars$mpg, df = 4)
# summarize model fit with tidiers
augment(spl, mtcars)
#> # A tibble: 32 × 13
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 21 6 160 110 3.9 2.62 16.5 0 1 4 4
#> 2 21 6 160 110 3.9 2.88 17.0 0 1 4 4
#> 3 22.8 4 108 93 3.85 2.32 18.6 1 1 4 1
#> 4 21.4 6 258 110 3.08 3.22 19.4 1 0 3 1
#> 5 18.7 8 360 175 3.15 3.44 17.0 0 0 3 2
#> 6 18.1 6 225 105 2.76 3.46 20.2 1 0 3 1
#> 7 14.3 8 360 245 3.21 3.57 15.8 0 0 3 4
#> 8 24.4 4 147. 62 3.69 3.19 20 1 0 4 2
#> 9 22.8 4 141. 95 3.92 3.15 22.9 1 0 4 2
#> 10 19.2 6 168. 123 3.92 3.44 18.3 1 0 4 4
#> # ℹ 22 more rows
#> # ℹ 2 more variables: .fitted <dbl>, .resid <dbl>
# calls original columns x and y
augment(spl)
#> # A tibble: 32 × 5
#> x y w .fitted .resid
#> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 2.62 21 1 22.9 -1.87
#> 2 2.88 21 1 21.1 -0.117
#> 3 2.32 22.8 1 25.3 -2.48
#> 4 3.22 21.4 1 19.1 2.33
#> 5 3.44 18.7 1 17.8 0.928
#> 6 3.46 18.1 1 17.7 0.437
#> 7 3.57 14.3 1 17.1 -2.79
#> 8 3.19 24.4 1 19.2 5.19
#> 9 3.15 22.8 1 19.5 3.35
#> 10 3.44 19.2 1 17.8 1.43
#> # ℹ 22 more rows
library(ggplot2)
ggplot(augment(spl, mtcars), aes(wt, mpg)) +
geom_point() +
geom_line(aes(y = .fitted))
相關用法
- R broom glance.survexp 瀏覽 a(n) survexp 對象
- R broom glance.survreg 看一眼 survreg 對象
- R broom glance.sarlm 瀏覽一個(n)spatialreg對象
- R broom glance.survdiff 瀏覽 a(n) survdiff 對象
- R broom glance.svyglm 瀏覽 svyglm 對象
- R broom glance.survfit 瀏覽 a(n) survfit 對象
- R broom glance.speedglm 看一眼 speedglm 對象
- R broom glance.speedlm 掃視一個 speedlm 對象
- R broom glance.summary.lm 瀏覽一個(n)summary.lm對象
- R broom glance.svyolr 瞥一眼 svyolr 對象
- R broom glance.rlm 瀏覽 a(n) rlm 對象
- R broom glance.felm 瞥一眼毛氈物體
- R broom glance.geeglm 瀏覽 a(n) geeglm 對象
- R broom glance.plm 瀏覽一個 (n) plm 對象
- R broom glance.biglm 瀏覽 a(n) biglm 對象
- R broom glance.clm 瀏覽 a(n) clm 對象
- R broom glance.rma 瀏覽一個(n) rma 對象
- R broom glance.multinom 瀏覽一個(n)多項對象
- R broom glance.rq 查看 a(n) rq 對象
- R broom glance.mjoint 查看 a(n) mjoint 對象
- R broom glance.fitdistr 瀏覽 a(n) fitdistr 對象
- R broom glance.glm 瀏覽 a(n) glm 對象
- R broom glance.coxph 瀏覽 a(n) coxph 對象
- R broom glance.margins 瀏覽 (n) 個 margins 對象
- R broom glance.poLCA 瀏覽一個(n) poLCA 對象
注:本文由純淨天空篩選整理自等大神的英文原創作品 Tidy a(n) smooth.spine object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。