ask(runjags)
ask()所属R语言包:runjags
Obtain Input from User With Error Handling
获取用户的输入进行错误处理
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A simple function to detect input from the user, and keep prompting until a response matching the class of input required is given.
一个简单的函数来检测来自用户的输入,并保持提示,直到给定的响应所需的输入相匹配的类。
用法----------Usage----------
ask(prompt="?", type="logical", bounds=c(-Inf, Inf),
na.allow=FALSE)
参数----------Arguments----------
参数:prompt
what text string should be used to prompt the user? (character string)
应该使用什么样的文本字符串提示用户? (字符串)
参数:type
the class of object expected to be returned - "logical", "numeric", "integer", "character". If the user input does not match this return, the prompt is repeated
类的对象预计回来了 - “逻辑”,“数字”,“整数”,“性格”。如果用户输入的不匹配,此纳税申报表时,提示重复
参数:bounds
the lower and upper bounds of number to be returned. Ignored if type is "logical" or "character"
的下界和上界的数量将被返回。如果忽略类型是“逻辑”或“字符”
参数:na.allow
if TRUE, allows the user to input "NA" for any type, which is returned as NA
如果为TRUE,允许用户输入的“NA”为任何类型,它是为NA返回
(作者)----------Author(s)----------
Matthew Denwood <a href="mailto:matthew.denwood@glasgow.ac.uk">matthew.denwood@glasgow.ac.uk</a>
参见----------See Also----------
readline,
readline,
menu
menu
实例----------Examples----------
# Ask the user if they want to proceed[询问用户是否要继续]
## Not run: [#不运行:]
ask("Do you want to start the program now?", type="logical")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|