Description Usage Arguments Details Value See Also Examples
[!!!] // No description yet //
For reproducible results in parallel computing, set seed with
parallel::clusterSetRNGStream(iseed = x)
(where x
is your seed) (and not with set.seed
) as package
parallelMap is used for paralellization.
1 2 3 4 5 6 7 8 9 10 11 | ## S3 method for class 'hide_it'
print(x, ...)
sp_manyroc_with_cv_by_variable(
Spectra,
variables_to_analyze,
k_folds = 3,
times = 10,
seeds = NULL,
kind = NULL
)
|
x |
an object used to select a method. |
... |
further arguments passed to or from other methods. |
Spectra |
|
variables_to_analyze |
( |
k_folds |
(positive |
times |
(positive |
seeds |
( Each seed will be passed to |
kind |
character or |
[!!!] The seeds nust be at least of length 6 and meet other
requirements for "L'Ecuyer-CMRG"
random number
generator.
[!!!] At the moment Seeding section needs revision if
it is necessary to use
"L'Ecuyer-CMRG"
(pseudo)random number generator as
set.seed()
does not work with
parallelMap package.
Instead parallel::clusterSetRNGStream(iseed = x)
(where x
is your seed) should be used with
parallelMap to get reproducible results.
A list with results
[!!!] Description needs more specification.
1 2 3 4 5 6 7 8 | library(manyROC)
fluorescence$ID <- 1:nrow(fluorescence)
sp_manyroc_with_cv_by_variable(
fluorescence[, , 500 ~ 501],
c("gr", "class"),
k_folds = 3,
times = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.