Learn R Programming

mikropml (version 1.6.1)

get_outcome_type: Get outcome type.

Description

If the outcome is numeric, the type is continuous. Otherwise, the outcome type is binary if there are only two outcomes or multiclass if there are more than two outcomes.

Usage

get_outcome_type(outcomes_vec)

Value

Outcome type (continuous, binary, or multiclass).

Arguments

outcomes_vec

Vector of outcomes.

Author

Zena Lapp, zenalapp@umich.edu

Examples

Run this code
get_outcome_type(c(1, 2, 1))
get_outcome_type(c("a", "b", "b"))
get_outcome_type(c("a", "b", "c"))

Run the code above in your browser using DataLab