Learn R Programming

FRB (version 2.0-1)

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

Description

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

Usage

# S3 method for FRBhot
summary(object, digits = 5, ...)
# S3 method for summary.FRBhot
print(x, ...)

Value

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

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

Author

Gert Willems, Ella Roelant and Stefan Van Aelst

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.

References

  • S. Van Aelst and G. Willems (2013), Fast and robust bootstrap for multivariate inference: The R package FRB. Journal of Statistical Software, 53(3), 1--32. tools:::Rd_expr_doi("10.18637/jss.v053.i03").

See Also

FRBhotellingS, FRBhotellingMM, plot.FRBhot

Examples

Run this code
data(ForgedBankNotes)
samplemean <- apply(ForgedBankNotes, 2, mean)
res = FRBhotellingS(ForgedBankNotes, mu0=samplemean)

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

Run the code above in your browser using DataLab