print.SmRaSE | R Documentation |
Similar to the usual print methods, this function summarizes results.
from a fitted 'SmRaSE'
object.
## S3 method for class 'SmRaSE'
print(x, ...)
x |
fitted |
... |
additional arguments. |
No value is returned.
RaSE
.
set.seed(0, kind = "L'Ecuyer-CMRG")
train.data <- RaModel("classification", 1, n = 100, p = 50)
xtrain <- train.data$x
ytrain <- train.data$y
## Not run:
# test RaSE classifier with LDA base classifier
fit <- RaSE(xtrain, ytrain, B1 = 50, B2 = 50, iteration = 0, cutoff = TRUE,
base = 'lda', cores = 2, ranking = TRUE)
# print the summarized results
print(fit)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.