Display a histogram and table of summary statistics

fdPanelHistogram(x, digits = 4, plotTitle = "Histogram", ...)

Arguments

x
a numeric vector.
digits
number of digits to display in the summary statistics table.
plotTitle
title of the histogram.
...
extra arguments (not used currently).

Examples

library(flightdeck)
if (interactive()){
  runif(1000) %>%
    fdPanelHistogram(plotTitle = 'Histogram of Residuals') %>%
    fdPreview
}