当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R probably levels.class_pred 提取class_pred级别


class_pred 对象的级别不包含模棱两可的值。

用法

# S3 method for class_pred
levels(x)

参数

x

class_pred 对象。

例子


x <- class_pred(factor(1:5), which = 1)

# notice that even though `1` is not in the `class_pred` vector, the
# level remains from the original factor
levels(x)
#> [1] "1" "2" "3" "4" "5"

源代码:R/class-pred.R

相关用法


注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Extract class_pred levels。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。