Learn R Programming

TSQCA (version 1.3.1)

print.tsqca_result: Print method for TSQCA results

Description

Displays a concise overview of TSQCA analysis results.

Usage

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

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

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

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

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

Value

Invisibly returns x.

Arguments

x

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

...

Additional arguments (ignored).

Examples

Run this code
# \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)
# }

Run the code above in your browser using DataLab