當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R workflowsets pull_workflow_set_result 從工作流集中提取元素


[Soft-deprecated]

用法

pull_workflow_set_result(x, id)

pull_workflow(x, id)

參數

x

workflow_set()workflow_map() 輸出的工作流程集。

id

工作流 ID 的單個字符串。

pull_workflow_set_result() 生成 tune_resultresample_results 對象。 pull_workflow() 返回不合適的工作流對象。

細節

pull_workflow_set_result() 檢索特定工作流程的 workflow_map() 結果,而 pull_workflow()info 列中提取未擬合的工作流程。

應使用extract_workflow_set_result()extract_workflow() 函數來代替這些函數。

例子

library(tune)

two_class_res
#> # A workflow set/tibble: 6 × 4
#>   wflow_id      info             option    result   
#>   <chr>         <list>           <list>    <list>   
#> 1 none_cart     <tibble [1 × 4]> <opts[3]> <tune[+]>
#> 2 none_glm      <tibble [1 × 4]> <opts[3]> <rsmp[+]>
#> 3 none_mars     <tibble [1 × 4]> <opts[3]> <tune[+]>
#> 4 yj_trans_cart <tibble [1 × 4]> <opts[3]> <tune[+]>
#> 5 yj_trans_glm  <tibble [1 × 4]> <opts[3]> <rsmp[+]>
#> 6 yj_trans_mars <tibble [1 × 4]> <opts[3]> <tune[+]>

pull_workflow_set_result(two_class_res, "none_cart")
#> Warning: `pull_workflow_set_result()` was deprecated in workflowsets 0.1.0.
#> ℹ Please use `extract_workflow_set_result()` instead.
#> # Tuning results
#> # 5-fold cross-validation 
#> # A tibble: 5 × 4
#>   splits            id    .metrics          .notes          
#>   <list>            <chr> <list>            <list>          
#> 1 <split [632/159]> Fold1 <tibble [20 × 6]> <tibble [0 × 1]>
#> 2 <split [633/158]> Fold2 <tibble [20 × 6]> <tibble [0 × 1]>
#> 3 <split [633/158]> Fold3 <tibble [20 × 6]> <tibble [0 × 1]>
#> 4 <split [633/158]> Fold4 <tibble [20 × 6]> <tibble [0 × 1]>
#> 5 <split [633/158]> Fold5 <tibble [20 × 6]> <tibble [0 × 1]>

pull_workflow(two_class_res, "none_cart")
#> Warning: `pull_workflow()` was deprecated in workflowsets 0.1.0.
#> ℹ Please use `extract_workflow()` instead.
#> ══ Workflow ══════════════════════════════════════════════════════════════
#> Preprocessor: Formula
#> Model: decision_tree()
#> 
#> ── Preprocessor ──────────────────────────────────────────────────────────
#> Class ~ A + B
#> 
#> ── Model ─────────────────────────────────────────────────────────────────
#> Decision Tree Model Specification (classification)
#> 
#> Main Arguments:
#>   cost_complexity = tune()
#>   min_n = tune()
#> 
#> Computational engine: rpart 
#> 
源代碼:R/pull.R

相關用法


注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Extract elements from a workflow set。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。