comment_add()
可用于在您工作时记录有关工作流程或其结果的重要信息。可以添加或删除评论。
用法
comment_add(x, id, ..., append = TRUE, collapse = "\n")
comment_get(x, id)
comment_reset(x, id)
comment_print(x, id = NULL, ...)
参数
- x
-
workflow_set()
或workflow_map()
输出的工作流程集。 - id
-
wflow_id
列中的值的单个字符串。对于comment_print()
,id
可以是向量或NULL
(这表明所有注释都被打印)。 - ...
-
一个或多个字符串。
- append
-
一个逻辑值,用于确定是否应将新注释添加到现有值中。
- collapse
-
分隔注释的字符串。
例子
two_class_set
#> # A workflow set/tibble: 6 × 4
#> wflow_id info option result
#> <chr> <list> <list> <list>
#> 1 none_cart <tibble [1 × 4]> <opts[0]> <list [0]>
#> 2 none_glm <tibble [1 × 4]> <opts[0]> <list [0]>
#> 3 none_mars <tibble [1 × 4]> <opts[0]> <list [0]>
#> 4 yj_trans_cart <tibble [1 × 4]> <opts[0]> <list [0]>
#> 5 yj_trans_glm <tibble [1 × 4]> <opts[0]> <list [0]>
#> 6 yj_trans_mars <tibble [1 × 4]> <opts[0]> <list [0]>
two_class_set %>% comment_get("none_cart")
#> [1] ""
new_set <-
two_class_set %>%
comment_add("none_cart", "What does 'cart' stand for\u2753") %>%
comment_add("none_cart", "Classification And Regression Trees.")
comment_print(new_set)
#> ── none_cart ─────────────────────────────────────────────────────────────
#>
#> What does 'cart' stand for❓
#>
#> Classification And Regression Trees.
#>
new_set %>% comment_get("none_cart")
#> [1] "What does 'cart' stand for❓\nClassification And Regression Trees."
new_set %>%
comment_reset("none_cart") %>%
comment_get("none_cart")
#> [1] ""
相关用法
- R workflowsets collect_metrics.workflow_set 获取并格式化通过调整工作流集函数生成的结果
- R workflowsets extract_workflow_set_result 提取工作流集的元素
- R workflowsets option_add 添加和编辑工作流程集中保存的选项
- R workflowsets fit_best.workflow_set 将模型拟合到数值最优配置
- R workflowsets leave_var_out_formulas 创建没有每个预测变量的公式
- R workflowsets workflow_map 处理一系列工作流程
- R workflowsets as_workflow_set 将现有对象转换为工作流集
- R workflowsets option_list 制作一个分类的选项列表
- R workflowsets rank_results 按指标对结果进行排名
- R workflowsets workflow_set 从预处理和模型对象生成一组工作流对象
- R workflowsets pull_workflow_set_result 从工作流集中提取元素
- R workflowsets autoplot.workflow_set 绘制工作流程集的结果
- R workflowsets update_workflow_model 更新工作流集中的工作流组件
- R workflows add_model 将模型添加到工作流程
- R workflows workflow 创建工作流程
- R workflows extract-workflow 提取工作流程的元素
- R workflows add_variables 将变量添加到工作流程
- R workflows add_formula 将公式术语添加到工作流程
- R workflows predict-workflow 从工作流程进行预测
- R workflows augment.workflow 通过预测增强数据
- R workflows add_recipe 将配方添加到工作流程
- R workflows glance.workflow 工作流程模型一览
- R workflows is_trained_workflow 确定工作流程是否经过训练
- R workflows fit-workflow 适合工作流对象
- R workflows add_case_weights 将案例权重添加到工作流程
注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Add annotations and comments for workflows。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。