Creates a report with formatted table and plots for XOR pattern detection results.
generate_xor_reportConsole(
results,
data,
class_col,
scale_data = TRUE,
show_plots = TRUE,
quantile_lines = c(1/3, 2/3),
line_method = "quantile"
)Invisibly returns a list containing the formatted table and plots (if generated).
Either a data frame from detect_xor$results_df or the full list returned by detect_xor.
Original dataset containing variables and classes.
Character specifying the class column name.
Logical indicating whether to scale variables in plots. Default: TRUE.
Logical indicating whether to display plots. Default: TRUE.
Numeric vector of quantiles for reference lines in XY plots. Default: c(1/3, 2/3).
Method for boundary calculation ("quantile" or "range"). Default: "quantile".
detect_xor for XOR pattern detection,
generate_xor_reportHTML for HTML report generation