View source: R/adproclus_classes.R
summary.adpc | R Documentation |
For an object of class adpc
as input, this method yields a summary
object of class summary.adpc
including group characteristics of the
clusters in the solution. Works for both full and low dimensional solutions.
Adjust the parameters digits, matrix_rows, matrix_cols
to change the
level of detail for the printing of the summary.
## S3 method for class 'adpc'
summary(
object,
title = "ADPROCLUS solution",
digits = 3,
matrix_rows = 10,
matrix_cols = 5,
...
)
object |
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 |
Invisibly returns object of class summary.adpc
.
# Obtain data, compute model, summarize model
x <- stackloss
model <- adproclus(x, 3)
model_summary <- summary(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.