【发布时间】:2017-08-10 03:39:41
【问题描述】:
我正在运行一个模拟,想知道是否可以使用 broom、dplyr、modelr 或 purrr 访问我的模型内部的“x”估计值。
这正是我想要的,但我不想在最后一段代码中使用[[1]]。
library(tidyverse)
library(purrr)
library(broom)
mod <- function(df) {
lm(y ~ x, data = df)
}
sim <- tibble(
model = "model1",
mu = 5, #this is unknown in practice
beta = 2.7, #this is unknown in practice
sigma = 0.15, #this is unknown in practice
mu_e = 0,
sigma_e = 1
)
sim_dat <- sim %>%
crossing(replication = 1:10000) %>%
mutate(e = rnorm(mu_e, mu_e),
x = sample(c(0,1),size=n(),replace = TRUE,prob=c(0.5, 0.5)),
y = mu+x*beta+e) %>%
group_by(model) %>%
nest() %>%
mutate(model_fit = map(data, mod))
broom::tidy(sim_dat$model_fit[[1]]) %>%
filter(term=="x") %>%
select(estimate)
【问题讨论】:
标签: r dplyr purrr broom modelr