summary.FRBhot {FRB} | R Documentation |
Summary method for objects of class FRBhot
, and print method of the summary object.
## S3 method for class 'FRBhot': summary(object, digits = 5, ...) ## S3 method for class 'summary.FRBhot': print(x, ...)
object |
an R object of class FRBhot , typically created by FRBhotellingS or FRBhotellingMM |
digits |
number of digits for printing (defaulting to 5) |
x |
an R object of class summary.FRBhot , resulting from summary(FRBhotellingS(),...) or summary(FRBhotellingMM(),...) |
... |
potentially more arguments to be passed to methods |
The print
method here displays a few things extra with regard to print.FRBhot
: apart from the test statistic and
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.
summary.FRBhot
simply returns its two arguments in a list.
Gert Willems and Ella Roelant
FRBhotellingS
, FRBhotellingMM
, print.FRBhot
, plot.FRBhot
data(ForgedBankNotes) samplemean <- apply(ForgedBankNotes, 2, mean) res = FRBhotellingS(ForgedBankNotes, mu0=samplemean) summary(res) # -> print.summary.FRBhot() method