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


R rsample complement 确定评估样本


此方法和函数有助于查找哪些数据属于分析和评估集。

用法

complement(x, ...)

# S3 method for rsplit
complement(x, ...)

# S3 method for rof_split
complement(x, ...)

# S3 method for sliding_window_split
complement(x, ...)

# S3 method for sliding_index_split
complement(x, ...)

# S3 method for sliding_period_split
complement(x, ...)

# S3 method for apparent_split
complement(x, ...)

参数

x

rsplit 对象。

...

目前未使用。

整数向量。

细节

给定 rsplit 对象,complement() 将确定哪些数据行包含在评估集中。为了节省空间,许多 rsplit 对象将不包含评估拆分的索引。

也可以看看

例子

set.seed(28432)
fold_rs <- vfold_cv(mtcars)
head(fold_rs$splits[[1]]$in_id)
#> [1] 2 3 4 5 6 7
fold_rs$splits[[1]]$out_id
#> [1] NA
complement(fold_rs$splits[[1]])
#> [1]  1  9 25 27
源代码:R/complement.R

相关用法


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