print.msaenet: Print msaenet Model Information

Description Usage Arguments Author(s) Examples

View source: R/print-msaenet.R

Description

Print msaenet model objects (currently, only printing the model information of the final step).

Usage

1
2
## S3 method for class 'msaenet'
print(x, ...)

Arguments

x

An object of class msaenet.

...

Additional parameters for print (not used).

Author(s)

Nan Xiao <https://nanx.me>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
dat <- msaenet.sim.gaussian(
  n = 150, p = 500, rho = 0.6,
  coef = rep(1, 5), snr = 2, p.train = 0.7,
  seed = 1001
)

msaenet.fit <- msaenet(
  dat$x.tr, dat$y.tr,
  alphas = seq(0.2, 0.8, 0.2),
  nsteps = 3L, seed = 1003
)

print(msaenet.fit)

msaenet documentation built on May 18, 2019, 1:03 a.m.