mjs_hist: Shortcut for plotting MetricsGraphics histograms

Description Usage Arguments Value Examples

View source: R/hist.r

Description

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.

Usage

1
mjs_hist(data, bins = NULL, bar_margin = 1)

Arguments

data

numeric vector

bins

number of bins for the histogram (NULL == let MetricsGraphcis.js library compute)

bar_margin

space between bars (defaults to 1)

Value

metricsgraphics object

Examples

1
2
3
4
5
6
7
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)

hrbrmstr/metricsgraphics documentation built on May 17, 2019, 5:10 p.m.