Learn R Programming

modelenv (version 0.2.0)

set_model_mode: Register Mode for Model

Description

This function is used to register a mode for a model.

Usage

set_model_mode(model, mode)

Value

NULL invisibly

Arguments

model

A single character string for the model type (e.g. "k_means", etc).

mode

A single character string for the model mode (e.g. "partition").

Details

This function can be called multiple times without error. This becomes valuable when multiple packages adds the same mode to a model. Having both packages use set_model_mode() avoids having one package depend on the other.

Examples

Run this code
if (FALSE) {
set_new_model("shallow_learning_model")

get_from_env("shallow_learning_model_modes")

set_model_mode("shallow_learning_model", "partition")

get_from_env("shallow_learning_model_modes")
}

Run the code above in your browser using DataLab