List all options defined in package “modeltuner”
modeltuner_options.Rd
modeltuner_options()
displays the current values of all options set in the package.
These options define default values for certain function parameters.
Details
cv_nfold (value at package startup:
=10
): Default value of argumentnfold
incv()
,tune()
and stepwise functions.cv_verbose (
=interactive()
at startup): Default value of argumentverbose
incv()
,cv_show_se (
=FALSE
at startup): Default value of argumentse
inprint.performance()
andprint.evaluation_log()
and default oferrorbars
inplot.evaluation_log()
,cv_iter (
=crit_min()
at startup): Default value of argumentiter
incv()
applied to models of class “fm_xgb” or “fm_glmnet”,expand_max_model (
=30
at startup): Default value of argumentmax_n_model
inmultimodel.model()
andtune.model()
,print_max_model (
=3
at startup): Default value ofn
inprint.multimodel()
,print.cv()
andprint.evaluation_log()
,print_max_row (
=30
at startup): Default value ofn
inprint.performance()
andprint.extract_pref_iter()
,print_rows_evaluation_log (
=6
at startup): Default value ofn_row
inprint.evaluation_log()
.
Examples
modeltuner_options()
#> $cv_nfold
#> [1] 10
#>
#> $cv_verbose
#> [1] FALSE
#>
#> $cv_show_se
#> [1] FALSE
#>
#> $cv_iter
#> Preference criterion for an iteratively fitted model:
#> criterion: crit_min()
#> label suffix: “min”
#> Selects the iteration with minimal test error.
#>
#> $expand_max_model
#> [1] 30
#>
#> $print_max_model
#> [1] 3
#>
#> $print_max_row
#> [1] 30
#>
#> $print_rows_evaluation_log
#> [1] 6
#>