(控制台)R 中的用户交互?
我相信你们都知道在回归对象上执行绘图命令时的“点击返回以显示下一个绘图”语句。我想知道如何在 R 中自己进行这种交互。 我在邮件列表上找到了几篇帖子,但没有什么真正全面的。其中大部分涉及 menu() 和不同操作系统的 GUI。我只是想创建类似的东西:
Please enter sample size n:
> 1000
#execution of
rnorm(1000)
可能我刚刚错过了文档的某些部分,并且根本无法找到合适的单词来谷歌......
I am sure you all know the "hit return to show next plot" statement when executing the plot command on a regression object. I wonder how I can do this kind of interaction on my own in R.
I found a couple of posts on the mailing list, but nothing really comprehensive. Most of the it dealt with menu() and different OSes GUIs. I am just looking to create something like:
Please enter sample size n:
> 1000
#execution of
rnorm(1000)
Probably I have just missed some part of the documentation and simply can't find the right words to google...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是
readLines
而是readline
。一个稍微花哨的实现:
Not
readLines
butreadline
.A slightly fancier implementation:
您可以使用 readLines,但我确信还有其他方法......
You can use
readLines
, but I'm sure there are other ways too...