summary.grid_archetypal {GeomArchetypal} | R Documentation |
It gives a summary for the output of grid_archetypal
## S3 method for class 'grid_archetypal'
summary(object, ...)
object |
An object of the class grid_archetypal |
... |
Other arguments (ignored) |
Given an object of class grid_archetypal the summary of the archetypal analysis output is given.
Remark: the first 2^d rows of the input data frame are the Grid Archetypes (d is the dimension of the data points).
No return value, called for side effects
# Load package
library(GeomArchetypal)
# Create random data:
set.seed(20140519)
df=matrix(runif(90) , nrow = 30, ncol=3)
colnames(df)=c("x","y","z")
# Grid Archetypal:
gaa=grid_archetypal(df, niter = 70, verbose = FALSE)
# Summary of the class "grid_archetypal":
summary(gaa)