summary.radviz {Radviz} | R Documentation |
Radviz Object Summary, head, print, dim and springs Methods
Description
Provides a summary for Radviz objects
Usage
## S3 method for class 'radviz'
summary(object, ..., n = 6)
## S3 method for class 'radviz'
head(x, n = 6, ...)
## S3 method for class 'radviz'
dim(x)
## S3 method for class 'radviz'
print(x, ...)
springs(x)
Arguments
object |
an object of class Radviz, as returned by |
... |
further arguments to be passed to or from other methods (not implemented) |
n |
the number of lines from each slots in the Radviz object to display (defaults to 6) |
x |
an object of class Radviz, as returned by |
Details
dim
returns the number of points and the number of dimensions
used for the projection.
print
returns invisibly the data, including the projected coordinates
Author(s)
Yann Abraham
Examples
data(iris)
das <- c('Sepal.Length','Sepal.Width','Petal.Length','Petal.Width')
S <- make.S(das)
rv <- do.radviz(iris,S)
summary(rv)
head(rv)
dim(rv)
print(rv)
[Package Radviz version 0.9.3 Index]