Displays a concise overview of ThSQCA analysis results.
Invisibly returns x.
# \donttest{
data(sample_data)
result <- otSweep(
dat = sample_data,
outcome = "Y",
conditions = c("X1", "X2", "X3"),
sweep_range = 6:8,
thrX = c(X1 = 7, X2 = 7, X3 = 7)
)
print(result)
#> OTS (Outcome Threshold Sweep) Result
#> ====================================
#>
#> Outcome: Y
#> Conditions: X1, X2, X3
#> Y thresholds swept: 6, 7, 8
#> Fixed X thresholds: X1=7, X2=7, X3=7
#>
#> Threshold settings analyzed: 3
#> - Valid solutions: 2
#> - No solution: 1
#>
#> Use summary() for detailed results table
#> Use generate_report() for full markdown report
# }