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


R rsample rset_reconstruct 使用新的 rset 子类扩展 rsample


rset_reconstruct() 封装了允许新的 rset 子类与 vctrs (通过 vctrs::vec_restore() )和 dplyr (通过 dplyr::dplyr_reconstruct() )正常工作的逻辑。它旨在成为一个开发人员工具,正常使用 rsample 不需要它。

用法

rset_reconstruct(x, to)

参数

x

用于恢复到 rset 子类的数据帧。

to

要恢复到的 rset 子类。

x 恢复为 to 的 rset 子类。

细节

在 vctrs/dplyr 操作之后,如果满足以下条件,则将 rset 对象视为"reconstructable":

  • xto 都有一个名为 "splits" 的相同列(列和行顺序无关紧要)。

  • xto 都有相同的列,前缀为 "id"(列和行顺序无关紧要)。

例子

to <- bootstraps(mtcars, times = 25)

# Imitate a vctrs/dplyr operation,
# where the class might be lost along the way
x <- tibble::as_tibble(to)

# Say we added a new column to `x`. Here we mock a `mutate()`.
x$foo <- "bar"

# This is still reconstructable to `to`
rset_reconstruct(x, to)
#> # Bootstrap sampling 
#> # A tibble: 25 × 3
#>    splits          id          foo  
#>    <list>          <chr>       <chr>
#>  1 <split [32/12]> Bootstrap01 bar  
#>  2 <split [32/9]>  Bootstrap02 bar  
#>  3 <split [32/13]> Bootstrap03 bar  
#>  4 <split [32/12]> Bootstrap04 bar  
#>  5 <split [32/12]> Bootstrap05 bar  
#>  6 <split [32/13]> Bootstrap06 bar  
#>  7 <split [32/11]> Bootstrap07 bar  
#>  8 <split [32/12]> Bootstrap08 bar  
#>  9 <split [32/14]> Bootstrap09 bar  
#> 10 <split [32/12]> Bootstrap10 bar  
#> # ℹ 15 more rows

# Say we lose the first row
x <- x[-1, ]

# This is no longer reconstructable to `to`, as `x` is no longer an rset
# bootstraps object with 25 bootstraps if one is lost!
rset_reconstruct(x, to)
#> # A tibble: 24 × 3
#>    splits          id          foo  
#>    <list>          <chr>       <chr>
#>  1 <split [32/9]>  Bootstrap02 bar  
#>  2 <split [32/13]> Bootstrap03 bar  
#>  3 <split [32/12]> Bootstrap04 bar  
#>  4 <split [32/12]> Bootstrap05 bar  
#>  5 <split [32/13]> Bootstrap06 bar  
#>  6 <split [32/11]> Bootstrap07 bar  
#>  7 <split [32/12]> Bootstrap08 bar  
#>  8 <split [32/14]> Bootstrap09 bar  
#>  9 <split [32/12]> Bootstrap10 bar  
#> 10 <split [32/10]> Bootstrap11 bar  
#> # ℹ 14 more rows

相关用法


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