Custom print method for objects of class projoint_data
.
Usage
# S3 method for class 'projoint_data'
print(x, ...)
Value
No return value, called for its side effect of printing a summary of
the projoint_data
object to the console.
Examples
# \donttest{
data(exampleData1)
dat <- reshape_projoint(
exampleData1,
.outcomes = c("choice1", "choice2")
)
print(dat)
#> <projoint_data>
#> - data: 800 rows, 13 columns
#> - labels: 24 levels, 4 columns
# }