powered by
Creates a data.frame object from the output of walker fit.
# S3 method for walker_fit as.data.frame(x, row.names = NULL, optional = FALSE, type, ...)
An output from walker() or walker_glm().
walker()
walker_glm()
NULL (default) or a character vector giving the row names for the data frame.
NULL
Ignored (part of generic as.data.frame signature).
as.data.frame
Either tiv (time-invariant parameters) or tv (time-varying coefficients).
tiv
tv
Ignored.
if (FALSE) { as.data.frame(fit, "tiv") %>% group_by(variable) %>% summarise(mean = mean(value), lwr = quantile(value, 0.05), upr = quantile(value, 0.95)) }
Run the code above in your browser using DataLab