Create a action plot.

Parameters:

Parameters:
R_BoxPlot makes quick, publication-ready distribution graphics from a single table: a box plot, a violin plot, or both overlaid. It expects a categorical X (groups/buckets) and a continuous Y (the numeric measure you want to inspect). Under the hood it computes quartiles, whiskers (1.5×IQR rule), optional outliers and/or jittered points, and—when asked—an interactive HTML you can hover and zoom through. Titles, label units, widths/heights, log-scales, colors and output formats are all configurable, and you can facet/partition outputs without duplicating the box.
You provide a table with at least two columns: X (categorical) and Y (numeric).
The operator groups rows by X and computes the five-number summary for Y (min, Q1, median, Q3, max) plus whiskers.
Depending on Plot type, it draws:
It renders to the chosen Output type (chart/HTML/interactive HTML) and saves files to Records; optionally emits summary values.


idBV) – choose box, violin, or both (overlay).mytableX) – pick the grouping column.mytableY) – pick the numeric measure to summarize.idLogY) – none or Log10. Only use when Y>0 for all rows.idYLabel) – a unit suffix on the Y axis (e.g., EUR, ms, %).idxH) – vertical (categories on X) or horizontal (categories on Y).idxJitter) – overlay jittered dots to see individual observations.cOutlier, cBox) – tweak highlight and box stroke/fill.nCut) – major tick density.Xangle, idFS, idAlign) – improve long category label readability.TitlePlot) + title includes nRows (idxN) – add a title and optionally show “nRows: N”.OUT: output type (idOutput)
chart – static chart file (image).HTML document – static HTML.interactive HTML document – zoom/hover tooltips out of the box.OUT: output partition (idPartOut)
same plot – everything in one figure/file (default).different files – one file per category/partition.Output (idOutputQ)
quantiles – also produce five-number summary (and enrich interactive tooltips).nothing – draw only the chart.myDpi) – DPI used for raster charts.idW, idH) – physical size of the output (cm).cPalette) – choose a ggplot palette when multiple layers/groups are present.idxTarget) – use to drive layered aesthetics or to split/facet when combined with output partitioning or upstream partitioning.Records tab: one or more files depending on idPartOut and upstream partitions.
Data / Log (optional): if idOutputQ = quantiles, the operator also exposes summary stats for downstream auditing; and idPrintTable can print them in the log.
idPartOut = different files emits one file per X level (or per idxTarget/partition).Log10, ensure Y>0 for all rows.Xangle.chart is ideal for embedding in PDFs.idW/idH and myDpi to fit dashboards or slide decks without blurry text.idLogY to none.idW, rotate labels (Xangle), or use horizontal orientation.idOutput isn’t set to a data-only mode, and that idPartOut isn’t pointing to empty partitions.idPartOut to same plot, or reduce upstream partitions.