Aggregate a table and display the variables content in a Histogram chart.

Parameters:

Parameters:
See dedicated page for more information.
R_AggAndHistoGGP builds, in one pass, a gallery of univariate distributions from a table:
It runs in the R engine with ggplot2, so it’s ideal for small-to-medium tables (what can fit comfortably in RAM). For very large data, aggregate upstream or use a streaming histogram operator.
Inputs

Outputs

Reads the input table (and, if partitioned, iterates by partition).
For each selected variable:
Arranges plots in a grid (single window) or as separate files according to the layout options.
Saves to the requested output format.
Variable list (idxVars)
Columns to chart. You can mix numeric, categorical and ordinal/Likert.
Optional: target variable (idxTarget)
A numeric or integer column used as a reference line in numeric histograms and as a target line color (see TargetColor).
OUT: output type (idOutput)
LBL: max number of categories (nbreak)
LBL: label angle for discrete variables (Xangle)
Rotate x-axis labels (degrees) for readability.
LBL: max length of labels (idMaxLen)
Truncates long category labels to the given character count.
LBL: Font size (FS)
Text size for labels (chart titles and axes).
LBL: thousands separator (idBM)
Character used when formatting tick labels (e.g., “,” or a space).
LBL: categories order (string axis only) (idSort)
Y-axis: maximum value (0 ⇒ auto) (idScale)
Clamp the y-axis to a given upper bound, or keep automatic scaling.
Check normality (idxNormal)
For numeric variables: draws a normal curve and prints a normality check summary in the Log.
CHT: LIKERT scale (idLikert)
Treats integer-coded ordinal variables as Likert (centered display, consistent spacing).
CHT: bar color (value/numeric variables) (numColor)
CHT: bar color (nominal/categorical variables) (nomColor)
CHT: target line color (TargetColor)
CHT: chart orientation (idxH)
vertical (default) or horizontal bar orientation.
CHT: all plots in one window (idxOneW)
When on, combine plots into a single multi-panel page; otherwise, one output per variable.
CHT: number of charts per line (idxColNum)
Grid columns when using a multi-panel layout.
CHT: max number of rows per plot (idxRowNum)
Grid rows cap (multi-panel layout).
Optional: file suffix (idxSuffix)
Appended to output filenames (useful when you version runs).
Multiplot width [pixel] (idW), Multiplot height [pixel] (idHt)
Canvas size for multi-panel outputs (HTML/PNG).
Depending on your build, the Configuration tab exposes extra runtime toggles:
nbreak bins; can overlay a normal curve and reference line.nbreak), truncate labels, and control order.idxOneW, idxColNum, idxRowNum, idW, idHt) give you fine control for dashboards and reports.Xangle, idMaxLen, and FS when you have long labels or many small categories.The operator runs in R memory. If you hit memory limits:
nbreak (fewer bins/categories).Partitioning creates one set of plots per partition; be mindful of the total number of files.
nbreak, reduce selected variables, or aggregate upstream. Consider running by partitions.FS, shorten labels via idMaxLen, rotate with Xangle, or switch to horizontal orientation.