summary.radviz: Radviz Object Summary, head, print, dim and springs Methods

View source: R/Helper-functions.R

summary.radvizR 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 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

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)


Radviz documentation built on March 26, 2022, 1:10 a.m.