print-iEN-method: Prints iEN object in a formatted way using the knitr package,...

Description Usage Arguments Value Examples

Description

Prints iEN object in a formatted way using the knitr package, displays optimized hyper parameters for each out of sample instance during cross-validated gridsearch.

Usage

1
2
## S4 method for signature 'iEN'
print(x, ...)

Arguments

x

object of type iEN

...

additional parameters fed to print

Value

formatted print

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
data(test_data)

alphaGrid <- seq(0,1, length.out=2)
phiGrid <- exp(seq(log(1),log(10), length.out=2))
nlambda <- 3
ncores <- 2
eval <- "RSS" 
family <- "gaussian"
intercept <- TRUE
standardize <- TRUE
center <- TRUE

model <- cv_iEN(X, Y, foldid, alphaGrid, phiGrid, nlambda, NULL, priors, ncores, eval, family, intercept, standardize, center)
print(model)

Teculos/immunological-EN documentation built on Sept. 23, 2020, 11:53 p.m.