summary.FRBhot: Summary Method for Objects of Class 'FRBhot'

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/summary_FRBhot.R

Description

Summary method for objects of class FRBhot, and print method of the summary object.

Usage

1
2
3
4
## S3 method for class 'FRBhot'
summary(object, digits = 5, ...)
## S3 method for class 'summary.FRBhot'
print(x, ...)

Arguments

object

an R object of class FRBhot, typically created by FRBhotellingS or FRBhotellingMM

digits

number of digits for printing (default is 5)

x

an R object of class summary.FRBhot, resulting from summary(FRBhotellingS(),...) or summary(FRBhotellingMM(),...)

...

potentially more arguments to be passed to methods

Details

The print method here displays the value of the test statistic and the corresponding bootstrap p-value. It also presents the simultaneous confidence intervals for the components of the location vector (or difference between the two location vectors), and the robust estimates for the location vector(s) and covariance matrix.

Value

summary.FRBhot simply returns its two arguments in a list.

Author(s)

Gert Willems, Ella Roelant and Stefan Van Aelst

References

See Also

FRBhotellingS, FRBhotellingMM, plot.FRBhot

Examples

1
2
3
4
5
data(ForgedBankNotes)
samplemean <- apply(ForgedBankNotes, 2, mean)
res = FRBhotellingS(ForgedBankNotes, mu0=samplemean)

summary(res) # -> print.summary.FRBhot() method

FRB documentation built on May 29, 2017, 5:45 p.m.

Related to summary.FRBhot in FRB...