R/tidy_felm_list.R

Defines functions tidy_felm_list

Documented in tidy_felm_list

#' Felm output summarize - list version
#'
#' @title Felm output summarize - list version
#' @param model_list list of felm models
#' @import tidyverse lfe broom
#' @export


tidy_felm_list <- function(model_list) {
  
  model_list %>% 
    lapply(tidy_felm) %>% 
    reduce(bind_rows)
  
}
hhilbig/haschaR documentation built on Dec. 26, 2024, 5:40 a.m.