gpt4 book ai didi

从 .r 文件中删除所有评论?

转载 作者:行者123 更新时间:2023-12-04 11:13:29 25 4
gpt4 key购买 nike

是否有我可以使用的 r 代码可以从 .r 文件中删除所有注释?

最佳答案

tidy.source()在 formatR 包中,选项 keep.comment = FALSE
和一个例子......复制并粘贴以下内容(包括评论)。整洁的源代码默认读取剪贴板。

# This is a useless comment
for(i in 1:5){
print(i)
}

进而
> library(formatR)
> tidy.source(keep.comment = FALSE)
for (i in 1:5) {
print(i)
}

关于从 .r 文件中删除所有评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8496334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com