作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找如何在 r 中执行 printf,即我想输入:
printf("hello %d\n", 56 )
并获得与键入相同的输出:
print(sprintf("hello %d\n", 56 )
我已阅读以下链接:
...所以我知道我可以使用 cat("hello", 56)
,这可能就是我会做的,但只是想知道是否有一些书写的快捷方式 打印(sprintf(...))
?
抱歉,如果这个问题重复(我不知道)。搜索“printf r”非常困难,因为它返回 php、c、... 的结果
最佳答案
printf <- function(...) invisible(print(sprintf(...)))
外部invisible
调用可能是不必要的,我不是100%清楚它是如何工作的。
关于r - 如何在r中执行printf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13023274/
我是一名优秀的程序员,十分优秀!