print.super_RaSE: Print a fitted super_RaSE object.

Description Usage Arguments Value See Also Examples

View source: R/print.super_RaSE.R

Description

Similar to the usual print methods, this function summarizes results. from a fitted 'super_RaSE' object.

Usage

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

Arguments

x

fitted 'super_RaSE' model object.

...

additional arguments.

Value

No value is returned.

See Also

Rase.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
set.seed(0, kind = "L'Ecuyer-CMRG")
train.data <- RaModel("classification", 1, n = 100, p = 50)
xtrain <- train.data$x
ytrain <- train.data$y

# test RaSE classifier with LDA base classifier
fit <- Rase(xtrain, ytrain, B1 = 50, B2 = 50, iteration = 0, cutoff = TRUE,
base = 'lda', cores = 2, criterion = 'ric', ranking = TRUE)

# print the summarized results
print(fit)

RaSEn documentation built on Oct. 16, 2021, 9:06 a.m.