print.orthoMTL: Print an orthoMTL Object

View source: R/print.R

print.orthoMTLR Documentation

Print an orthoMTL Object

Description

Displays a compact summary of a fitted orthoMTL model.

Usage

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

Arguments

x

A fitted model object of class "orthoMTL".

...

Additional arguments (currently ignored).

Value

Invisibly returns x.

Examples

set.seed(42)
n <- 100; p <- 10; n_tasks <- 3
X <- matrix(rnorm(n * p), n, p)
Y <- X %*% matrix(rnorm(p * n_tasks), p) + matrix(rnorm(n * n_tasks), n) * 0.1
fit <- orthoMTL(X, Y, lambda = 1e-3)
print(fit)

orthoMTL documentation built on Aug. 23, 2026, 5:10 p.m.