print.daFisher {robCompositions}R Documentation

print method for objects of class daFisher

Description

Provides a print output of objects from class “daFisher” as shown in the examples.

Usage

## S3 method for class 'daFisher':
print(x, ...)

Arguments

x object of class ‘daFisher’
... ...

Details

Have a look at the example, it's self-explaining.

Value

nothing

Author(s)

Matthias Templ

See Also

daFisher

Examples

require(MASS)
x1 <- mvrnorm(20,c(0,0,0),diag(3))
x2 <- mvrnorm(30,c(3,0,0),diag(3))
x3 <- mvrnorm(40,c(0,3,0),diag(3))
X <- rbind(x1,x2,x3)
grp=c(rep(1,20),rep(2,30),rep(3,40))

d1 <- daFisher(X,grp=grp,method="classical",coda=FALSE)
d2 <- daFisher(X,grp=grp,method="robust",coda=FALSE)
d2

[Package robCompositions version 1.3.3 Index]