side_by_side_slider {qqvases} | R Documentation |
Opens the default web browser with a display of two continuous distributions shown side-by-side and reflected to suggest a closed container. Interactive options control the display of water levels and the choice of the shapes of the underlying distributions.
side_by_side_slider(name, dists = make_df_list())
name |
Name of distribution to contrast with normal |
dists |
Named list of (d=density, q=quantile, r=sample) distributions (see make_df_list()) |
None
## Not run:
side_by_side_slider("Gamma")
dists <- make_df_list()
dists[["uniform"]] <- list(d=dunif, q=qunif, r=runif);
side_by_side_slider("uniform", dists)
## End(Not run)