(控制台)R 中的用户交互?

发布于 2024-10-31 19:56:56 字数 276 浏览 3 评论 0原文

我相信你们都知道在回归对象上执行绘图命令时的“点击返回以显示下一个绘图”语句。我想知道如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苍白女子 2024-11-07 19:56:56

不是readLines而是readline

n <- as.integer(readline(prompt = "Please enter sample size > "))

一个稍微花哨的实现:

read_value <- function(prompt_text = "", prompt_suffix = getOption("prompt"), coerce_to = "character")
{
  prompt <- paste(prompt_text, prompt_suffix)
  as(readline(prompt), coerce_to)
} 

read_value("Please enter sample size", coerce_to = "integer")

Not readLines but readline.

n <- as.integer(readline(prompt = "Please enter sample size > "))

A slightly fancier implementation:

read_value <- function(prompt_text = "", prompt_suffix = getOption("prompt"), coerce_to = "character")
{
  prompt <- paste(prompt_text, prompt_suffix)
  as(readline(prompt), coerce_to)
} 

read_value("Please enter sample size", coerce_to = "integer")
柠北森屋 2024-11-07 19:56:56

您可以使用 readLines,但我确信还有其他方法......

ask = function( prompt ) {
    cat( paste( prompt, ':' ) )
    readLines( n=1 )
}

n = as.integer( ask( 'Please enter sample size n' ) )

You can use readLines, but I'm sure there are other ways too...

ask = function( prompt ) {
    cat( paste( prompt, ':' ) )
    readLines( n=1 )
}

n = as.integer( ask( 'Please enter sample size n' ) )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文