plot quantiles
Plot results for baggr quantile models. Displays results facetted per group. Results are ggplot2
plots and can be modified.
plot_quantiles(fit, ncol, hline = TRUE)
fit
: an object of class baggr
ncol
: number of columns for the plot; defaults to half of number of groupshline
: logical; plots a line through 0ggplot2 object
## Not run: bg <- baggr(microcredit_simplified, model = "quantiles", quantiles = c(0.25, 0.50, 0.75), iter = 1000, refresh = 0, outcome = "consumption") #vanilla plot plot_quantiles(bg)[[1]] plot_quantiles(bg, hline = TRUE)[[2]] + ggplot2::coord_cartesian(ylim = c(-2, 5)) + ggplot2::ggtitle("Works like a ggplot2 plot!") ## End(Not run)