Glance 接受模型对象并返回 tibble::tibble()
,其中仅包含一行模型摘要。摘要通常是拟合优度度量、残差假设检验的 p 值或模型收敛信息。
Glance 永远不会返返回自对建模函数的原始调用的信息。这包括建模函数的名称或传递给建模函数的任何参数。
Glance 不计算汇总度量。相反,它将这些计算外包给适当的方法并将结果收集在一起。有时拟合优度测量是不确定的。在这些情况下,该度量将报告为 NA
。
无论模型矩阵是否秩亏,Glance 都会返回相同的列数。如果是这样,则不再具有明确定义值的列中的条目将使用适当类型的 NA
进行填充。
参数
- x
-
从
mclust::Mclust()
返回Mclust
对象。 - ...
-
附加参数。不曾用过。仅需要匹配通用签名。注意:拼写错误的参数将被吸收到
...
中,并被忽略。如果拼写错误的参数有默认值,则将使用默认值。例如,如果您传递conf.lvel = 0.9
,所有计算将使用conf.level = 0.95
进行。这里有两个异常:
值
恰好只有一行和一列的 tibble::tibble()
:
- BIC
-
模型的贝叶斯信息准则。
- df
-
模型使用的自由度。
- logLik
-
模型的对数似然。 [stats::logLik()] 可能是一个有用的参考。
- nobs
-
使用的观察数。
- model
-
表示具有最佳 BIC 的模型类型的字符串
- G
-
最佳模型中的混合成分数量
- hypvol
-
如果其他模型包含噪声分量,则为超体积参数的值。否则`NA`。
例子
# load library for models and data
library(mclust)
# load data manipulation libraries
library(dplyr)
library(tibble)
library(purrr)
library(tidyr)
set.seed(27)
centers <- tibble(
cluster = factor(1:3),
# number points in each cluster
num_points = c(100, 150, 50),
# x1 coordinate of cluster center
x1 = c(5, 0, -3),
# x2 coordinate of cluster center
x2 = c(-1, 1, -2)
)
points <- centers %>%
mutate(
x1 = map2(num_points, x1, rnorm),
x2 = map2(num_points, x2, rnorm)
) %>%
select(-num_points, -cluster) %>%
unnest(c(x1, x2))
# fit model
m <- Mclust(points)
# summarize model fit with tidiers
tidy(m)
#> # A tibble: 3 × 6
#> component size proportion variance mean.x1 mean.x2
#> <int> <int> <dbl> <dbl> <dbl> <dbl>
#> 1 1 101 0.335 1.12 5.01 -1.04
#> 2 2 150 0.503 1.12 0.0594 1.00
#> 3 3 49 0.161 1.12 -3.20 -2.06
augment(m, points)
#> # A tibble: 300 × 4
#> x1 x2 .class .uncertainty
#> <dbl> <dbl> <fct> <dbl>
#> 1 6.91 -2.74 1 3.98e-11
#> 2 6.14 -2.45 1 1.99e- 9
#> 3 4.24 -0.946 1 1.47e- 4
#> 4 3.54 0.287 1 2.94e- 2
#> 5 3.91 0.408 1 7.48e- 3
#> 6 5.30 -1.58 1 4.22e- 7
#> 7 5.01 -1.77 1 1.06e- 6
#> 8 6.16 -1.68 1 7.64e- 9
#> 9 7.13 -2.17 1 4.16e-11
#> 10 5.24 -2.42 1 1.16e- 7
#> # ℹ 290 more rows
glance(m)
#> # A tibble: 1 × 7
#> model G BIC logLik df hypvol nobs
#> <chr> <int> <dbl> <dbl> <dbl> <dbl> <int>
#> 1 EII 3 -2402. -1175. 9 NA 300
相关用法
- 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.survexp 浏览 a(n) survexp 对象
- R broom glance.survreg 看一眼 survreg 对象
- 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 对象
- R broom glance.aov 瞥一眼 lm 物体
- R broom glance.sarlm 浏览一个(n)spatialreg对象
- R broom glance.polr 浏览 a(n) polr 对象
- R broom glance.negbin 看一眼 negbin 对象
- R broom glance.mlogit 浏览一个(n) mlogit 对象
- R broom glance.fixest 看一眼最固定的物体
- R broom glance.nls 浏览 a(n) nls 对象
- R broom glance.mfx 浏览一个 (n) mfx 对象
注:本文由纯净天空筛选整理自等大神的英文原创作品 Glance at a(n) Mclust object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。