Coerce a non-Zelig fitted model object to a Zelig class object
to_zelig(obj)
a fitted model object fitted using lm and many using glm. Note: more intended in future Zelig releases.
lm
glm
library(dplyr) lm.out <- lm(Fertility ~ Education, data = swiss) z.out <- to_zelig(lm.out)#> to_zelig is an experimental function. #> Please report issues to: https://github.com/IQSS/Zelig/issues#> Assuming zls to convert to Zelig. # to_zelig called from within setx setx(z.out) %>% sim() %>% plot()