summary.adpc {adproclus} | R Documentation |
Summary of ADPROCLUS solution
Description
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.
Usage
## S3 method for class 'adpc'
summary(
object,
title = "ADPROCLUS solution",
digits = 3,
matrix_rows = 10,
matrix_cols = 5,
...
)
Arguments
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 |
Value
Invisibly returns object of class summary.adpc
.
Examples
# Obtain data, compute model, summarize model
x <- stackloss
model <- adproclus(x, 3)
model_summary <- summary(model)
[Package adproclus version 1.0.2 Index]