print.MTL: Print the meta information of the model

Description Usage Arguments Examples

View source: R/MTL.R

Description

Print the meta information of the model

Usage

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

Arguments

x

A trained MTL model

...

Other parameters

Examples

1
2
3
4
5
6
7
#create data
data<-Create_simulated_data(Regularization="L21", type="Regression")
#train a MTL model
model<-MTL(data$X, data$Y, type="Regression", Regularization="L21",
    Lam1=0.1, Lam2=0, opts=list(init=0,  tol=10^-6, maxIter=1500)) 
#print the information of the model
print(model)

transbioZI/RMTL documentation built on May 5, 2019, 1:32 a.m.