Description Usage Arguments Value See Also Examples
View source: R/print.super_RaSE.R
Similar to the usual print methods, this function summarizes results.
from a fitted 'super_RaSE'
object.
1 2 |
x |
fitted |
... |
additional arguments. |
No value is returned.
Rase
.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.