gpt4 book ai didi

r - R 中的文档字符串有缺点吗?

转载 作者:行者123 更新时间:2023-12-01 11:48:39 24 4
gpt4 key购买 nike

我不喜欢评论的自动缩进ESS (Emacs Speaks Statistics) 模式,因为它离右边太远了。

normalize <- function(values){
# comment
return(2* values / (max(values) - min(values)) )
}

Python 也使用文档字符串作为注释。我在 R 中玩弄它。

normalize <- function(values){
"comment
line 2 of comment"
return(2* values / (max(values) - min(values)) )
}

我确定我也可以修复评论的 ESS 缩进,但我喜欢多行的想法评论。 GNU R 中的文档字符串有什么缺点吗?

最佳答案

## 而不是 # 开头的注释将根据当前缩进级别自动缩进。

j <- function(x) {
# One hash auto-indents to column 40
## Two hashes auto-indent to current level
### Three hashes auto-indent to BOL
rnorm(x)
}

关于r - R 中的文档字符串有缺点吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13636971/

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