print.grid_archetypal {GeomArchetypal} | R Documentation |
Print an Object of the Class grid_archetypal
Description
It prints the output of grid_archetypal
Usage
## S3 method for class 'grid_archetypal'
print(x, ...)
Arguments
x |
An object of the class grid_archetypal |
... |
Other arguments (ignored) |
Details
Given an object of class grid_archetypal all the results are printed in explanatory form.
Value
No return value, called for side effects
Examples
# 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)
# Print the class "grid_archetypal":
print(gaa)
[Package GeomArchetypal version 1.0.2 Index]