Learn R Programming

baggr (version 0.7.8)

plot_quantiles: plot quantiles

Description

Plot results for baggr quantile models. Displays results facetted per group. Results are ggplot2 plots and can be modified.

Usage

plot_quantiles(fit, ncol, hline = TRUE)

Value

ggplot2 object

Arguments

fit

an object of class baggr

ncol

number of columns for the plot; defaults to half of number of groups

hline

logical; plots a line through 0

Examples

Run this code
if (FALSE) {
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!")
}

Run the code above in your browser using DataLab