Displays a concise overview of ThSQCA analysis results.

# S3 method for class 'tsqca_result'
print(x, ...)

# S3 method for class 'otSweep_result'
print(x, ...)

# S3 method for class 'dtSweep_result'
print(x, ...)

# S3 method for class 'ctSweepS_result'
print(x, ...)

# S3 method for class 'ctSweepM_result'
print(x, ...)

Arguments

x

A ThSQCA result object returned by one of the sweep functions.

...

Additional arguments (ignored).

Value

Invisibly returns x.

Examples

# \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
# }