mjs_hist {metricsgraphics} | R Documentation |
This function performs the call to mjs_plot
and assumes
data
is a numeric vector. It's intended to save keystrokes
when plotting quick histograms. This function automatically a y
axis label "Frequency" which you can override with a call to
mjs_labs
.
mjs_hist(data, bins = NULL, bar_margin = 1)
data |
numeric vector |
bins |
number of bins for the histogram ( |
bar_margin |
space between bars (defaults to |
metricsgraphics object
bimod <- c(rnorm(1000, 0, 1), rnorm(1000, 3, 1))
mjs_plot(bimod) %>% mjs_histogram()
bimod %>% mjs_hist()
mjs_plot(bimod) %>% mjs_histogram(bins=30)
bimod %>% mjs_hist(30)