print.closer_grid_archetypal {GeomArchetypal} | R Documentation |
It prints the output of closer_grid_archetypal
## S3 method for class 'closer_grid_archetypal'
print(x, ...)
x |
An object of the class closer_grid_archetypal |
... |
Other arguments (ignored) |
Given an object of class closer_grid_archetypal all the results are printed in explanatory form.
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")
# Closer Grid Archetypal
cga=closer_grid_archetypal(df, niter = 70, verbose = FALSE)
# Print the class "closer_grid_archetypal"
print(cga)