Aliases: tidy.plm plm_tidiers
Keywords:
### ** Examples # feel free to ignore the following lineāit allows {broom} to supply # examples without requiring the model-supplying package to be installed. if (requireNamespace("plm", quietly = TRUE)) { # load libraries for models and data library(plm) # load data data("Produc", package = "plm") # fit model zz <- plm(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp, data = Produc, index = c("state", "year") ) # summarize model fit with tidiers summary(zz) tidy(zz) tidy(zz, conf.int = TRUE) tidy(zz, conf.int = TRUE, conf.level = 0.9) augment(zz) glance(zz) }