- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
x <- c(
0.367141764080875, 0.250037975705769, 0.167204185003365, 0.299794433447383,
0.366885973041269, 0.300453205296379, 0.333686861081341, 0.33301168850398,
0.400142004893329, 0.399433677388411, 0.366077304765104, 0.166402979455671,
0.466624230750293, 0.433499934139897, 0.300017278751768, 0.333673696762895,
0.29973685692478
)
fn <- fitdistrplus::fitdist(x,"norm")
summary(fn)
#> Fitting of the distribution ' norm ' by maximum likelihood
#> Parameters :
#> estimate Std. Error
#> mean 0.32846024 0.01918923
#> sd 0.07911922 0.01355908
#> Loglikelihood: 19.00364 AIC: -34.00727 BIC: -32.34084
#> Correlation matrix:
#> mean sd
#> mean 1 0
#> sd 0 1
基本上,它需要一个向量并尝试拟合分布使用fitdistrplus package .
我尝试查看 broom package ,但它没有涵盖该内容的函数。
最佳答案
当您调用 broom::tidy(fn)
时,您会收到一条错误消息:
Error: No tidy method for objects of class fitdist
这是因为 broom
中的这个函数只有有限数量的“好用”的对象,请参阅 methods(tidy)
了解完整列表。 ( Read more 关于 R 中的 S3 方法。更多 here )。
因此该函数不适用于对象 fitdist
,但适用于来自 MASS
的 fitdistr
对象(更“著名”)。
然后我们可以将class
分配给fn
,然后使用broom
:
class(fn) <- ("fitdist", "fitdistr")
# notice that I've kept the original class and added the other
# you shouldn't overwrite classes. ie: don't to this: class(fn) <- "fitdistr"
broom::tidy(fn)
# # A tibble: 2 x 3
# term estimate std.error
# <chr> <dbl> <dbl>
# 1 mean 0.328 0.0192
# 2 sd 0.0791 0.0136
请注意,您只能看到参数
。如果您希望看到更多内容并将所有内容组织得“整洁”,您应该告诉我们更多有关您的预期输出的信息。
broom::tidy()
让您到目前为止,如果您想要更多,我将从定义适用于 class
的我自己的方法函数开始 fitdist
对象使用 reference tidy.fitdistr
方法,并对其进行调整。
如何使用 fitdist
类的 S3 方法来改编原始 broom::tidy()
代码的示例。
定义你自己的方法(类似于定义你自己的函数):
# necessary libraries
library(dplyr)
library(broom)
# method definition:
tidy.fitdist <- function(x, ...) { # notice the use of .fitdist
# you decide what you want to keep from summary(fn)
# use fn$ecc... to see what you can harvest
e1 <- tibble(
term = names(x$estimate),
estimate = unname(x$estimate),
std.error = unname(x$sd)
)
e2 <- tibble(
term = c("loglik", "aic", "bic"),
value = c(unname(x$loglik), unname(x$aic), unname(x$bic))
)
e3 <- x$cor # I prefer this to: as_tibble(x$cor)
list(e1, e2, e3) # you can name each element for a nicer result
# example: list(params = e1, scores = e2, corrMatr = e3)
}
现在您可以通过以下方式调用这个新方法
:
tidy(fn) # to be more clear this is calling your tidy.fitdist(fn) under the hood.
# [[1]]
# # A tibble: 2 x 3
# term estimate std.error
# <chr> <dbl> <dbl>
# 1 mean 0.328 0.0192
# 2 sd 0.0791 0.0136
#
# [[2]]
# # A tibble: 3 x 2
# term value
# <chr> <dbl>
# 1 loglik 19.0
# 2 aic -34.0
# 3 bic -32.3
#
# [[3]]
# mean sd
# mean 1 0
# sd 0 1
请注意,类
是:
class(fn)
[1] "fitdist"
所以现在您实际上不需要像以前一样分配 fitdistr
(来自 MASS
)类。
关于r - 如何将 fitdistrplus::fitdist 摘要转换为整齐的格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51434417/
我是一名优秀的程序员,十分优秀!