class_pred | R Documentation |
class_pred()
creates a class_pred
object from a factor or ordered
factor. You can optionally specify values of the factor to be set
as equivocal.
class_pred(x = factor(), which = integer(), equivocal = "[EQ]")
x |
A factor or ordered factor. |
which |
An integer vector specifying the locations of |
equivocal |
A single character specifying the equivocal label used when printing. |
Equivocal values are those that you feel unsure about, and would like to exclude from performance calculations or other metrics.
x <- factor(c("Yes", "No", "Yes", "Yes"))
# Create a class_pred object from a factor
class_pred(x)
# Say you aren't sure about that 2nd "Yes" value. You could mark it as
# equivocal.
class_pred(x, which = 3)
# Maybe you want a different equivocal label
class_pred(x, which = 3, equivocal = "eq_value")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.