summary.HMT: Object Summaries Summary of a 'HMT' object

Description Usage Arguments See Also Examples

View source: R/print.R

Description

Object Summaries

Summary of a HMT object

Usage

1
2
## S3 method for class 'HMT'
summary(object, ...)

Arguments

object

HMT object

...

Not used.

See Also

HMT print.HMT

Examples

1
2
3
4
5
6
7
8
9
set.seed(42)
# Simulate gaussian data with block-diagonal variance matrix containing 12 blocks of size 5
X <- simuBlockGaussian(50, 12, 5, 0.7)
# Generate a response variable
y <- X[,c(2,7,12)]%*%c(2,2,-2) + rnorm(50,0,0.5)
# Apply MLGL method
res <- MLGL(X, y)
out <- HMT(res, X, y)
summary(out)

MLGL documentation built on Dec. 31, 2019, 3 a.m.