在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用modernize
星标8
分支1
更新时间2026年7月10日 22:55
Convert R code to modern tidyverse style
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Convert R code to modern tidyverse style
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | modernize |
| description | Convert R code to modern tidyverse style |
Refactor the given R script to modern tidyverse conventions:
|> instead of %>% or nested calls$ column access with dplyr::pull() or tidy evalfor loops with purrr::map() or vectorized alternativesread_csv() instead of read.csv()tibble() instead of data.frame()snake_case for all variable and function names.by argument in summarise()/mutate() instead of group_by() |> ... |> ungroup()library() calls at the top for any new packagesPreserve the original logic. Add comments where the refactored version behaves differently (e.g., stringsAsFactors defaults).