Utility function to compute and optimize bin breaks for histograms
util_optimize_histogram_bins(
x,
iqr_bw,
n_bw,
min_within = NULL,
max_within = NULL,
min_plot = NULL,
max_plot = NULL,
nbins_max = NULL
)
a list with bin breaks below, within and above limits
a vector of data values (numeric or datetime)
the interquartile range of values which should be included to
calculate the Freedman-Diaconis bandwidth (e.g., for
con_limit_deviations
only values within limits)
the number of values which should be included to calculate the
Freedman-Diaconis bandwidth (e.g., for con_limit_deviations
the number of values within limits)
the minimum value which is still within limits
(needed for con_limit_deviations
)
the maximum value which is still within limits
(needed for con_limit_deviations
)
the minimum value which should be included in the plot
the maximum value which should be included in the plot
the maximum number of bins for the histogram. Strong
outliers can cause too many narrow bins, which might be
even to narrow to be plotted. This also results in large
files and rendering problems. So it is sensible to limit
the number of bins. The function will produce a warning if
it reduces the number of bins in such a case. Reasons
could be unspecified missing value codes, or minimum or
maximum values far away from most of the data values, or
(for con_limit_deviations
) no or few values within limits.