print.adpc {adproclus} | R Documentation |
Print basic information on ADPROCLUS solution
Description
For an object of class adpc
as input, this method prints basic
information about the ADPROCLUS solution represented by the object.
Works for both full and low dimensional solutions. Adjust the parameters
digits, matrix_rows, matrix_cols
to change the level of detail printed.
Usage
## S3 method for class 'adpc'
print(
x,
title = "ADPROCLUS solution",
digits = 3,
matrix_rows = 10,
matrix_cols = 15,
...
)
Arguments
x |
ADPROCLUS solution (class: |
title |
String. Default: "ADPROCLUS solution" |
digits |
Integer. The number of digits that all decimal numbers will be rounded to. |
matrix_rows |
Integer. The number of matrix rows to display. OPTIONAL |
matrix_cols |
Integer. The number of matrix columns to display. OPTIONAL |
... |
ignored |
Value
No return value, called for side effects.
Examples
# Obtain data, compute model, print model
x <- stackloss
model <- adproclus(x, 3)
print(model)
[Package adproclus version 1.0.2 Index]