R 中是否有像在 Python 中使用下划线那样的数字分隔符?

Is there a digit separator in R like using underscore in Python?

在 Python 中有一种方法可以使用下划线使大数字更具可读性,例如 1000000 == 1_000_000,正如所讨论的 。但是,R 中有类似的东西吗?

使用 formatformatC 谷歌搜索它只会让我找到 。我已经尝试了 1_0001 0001'0001,000,但它们只会产生错误消息。真的没有解决办法吗?

像这样:

as.numeric(gsub("_","", "1_000_000"))