summary.radviz: Radviz Object Summary, head, print, dim and springs Methods
Description
Provides a summary for Radviz objects
Usage
# S3 method for radviz
summary(object, ..., n = 6)
# S3 method for radviz
head(x, n = 6, ...)
# S3 method for radviz
dim(x)
# S3 method for radviz
print(x, ...)
springs(x)
Arguments
object
an object of class Radviz, as returned by do.radviz
...
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 do.radviz
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
# NOT RUN {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)
# }