View source: R/adproclus_classes.R
print.adpc | R Documentation |
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.
## S3 method for class 'adpc'
print(
x,
title = "ADPROCLUS solution",
digits = 3,
matrix_rows = 10,
matrix_cols = 15,
...
)
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 |
No return value, called for side effects.
# Obtain data, compute model, print model
x <- stackloss
model <- adproclus(x, 3)
print(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.