print.HMT: Print Values

View source: R/print.R

print.HMTR Documentation

Print Values

Description

Print a HMT object

Usage

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

Arguments

x

HMT object

...

Not used.

See Also

HMT summary.HMT

Examples

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)
print(out)

MLGL documentation built on March 31, 2023, 9:32 p.m.