rp.panelname(rpanel)
rp.panelname()所属R语言包:rpanel
Automatic generation of a panel name
自动生成一个小组名称
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This creates the automatically assigned internal 'realname' parameter of a panel. 'realname' is the internally used name of the panel used by callback functions. In rpanel these will always have the form '.rpanelxxxxxxxx' where 'xxxxxxxx' is generated randomly whenever a panel is created.
这将创建自动分配内部的真实姓名参数面板。 “真实姓名”面板使用的回调函数内部使用的名称。在rpanel,这些都将始终有形式“。rpanelxxxxxxxx”,“XXXXXXXX”创建面板时,是随机生成的。
用法----------Usage----------
rp.panelname(new = TRUE)
参数----------Arguments----------
参数:new
optional parameter. When set to FALSE this will return the most recently created panel name.
可选参数。当设置为false,这将返回最近创建的面板名称。
值----------Value----------
A string of the form 'rpanelx', where x is an integer.
一个字符串的形式为“rpanelx,其中x是一个整数。
警告----------Warning----------
Note: returning of the most recent panel may fail when running R on a Windows machine in DOS. A warning is contained within the function.
注:返回最近的面板时,可能无法在DOS的Windows机器上运行R。都包含在该函数的警告。
参考文献----------References----------
rpanel: Simple interactive controls for R functions using the tcltk package. Journal of Statistical Software, 17, issue 9.
参见----------See Also----------
rp.control
rp.control
实例----------Examples----------
if (interactive()) {
hist.draw <- function(panel) {
hist(rnorm(50))
panel
}
hist.sample <- function() {
panel.name <- rp.panelname()
rp.control(realname = panel.name)
rp.button(panel.name, title = "Sample", action = hist.draw)
}
hist.sample()
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|