找回密码
 注册
查看: 291|回复: 0

R语言 rpanel包 rp.do()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-27 23:42:04 | 显示全部楼层 |阅读模式
rp.do(rpanel)
rp.do()所属R语言包:rpanel

                                        Runs a user written callback function
                                         运行用户编写的回调函数

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Runs a user written callback function, passing a panel to it as a parameter. This should be used to get the rpanel  into its intial state. For instance it is useful when using radiobuttons as these do not automatically call the action function when the controls are first created.
运行用户编写的回调函数,它作为一个参数传递一个面板。这应该被用来获取rpanel到其INTIAL状态。例如,它是有用的,当使用单选按钮,因为这些不自动调用第一次创建时的动作功能的控制。


用法----------Usage----------


rp.do(panel, action = I)



参数----------Arguments----------

参数:panel
the panel to be passed as a parameter to the function. This  may be passed as a panelname string or the panel object itself.
面板要传递一个参数的功能。这可能是通过作为一个panelname的字符串或面板对象本身。


参数:action
the function to be executed.
要执行的函数。


值----------Value----------

If the parameter panel is the panelname string the same string is returned. If the  panel object is used the altered panel is assigned to both the calling level and panel's environment  level.
如果该参数面板是panelname的的字符串相同的字符串返回。如果面板对象是用来改变的面板被分配到的层次和面板的环境。


参考文献----------References----------

rpanel: Simple interactive controls for R functions using the tcltk package. Journal of Statistical Software, 17, issue 9.

参见----------See Also----------

rp.radiogroup
rp.radiogroup


实例----------Examples----------


if (interactive()) {
   data.plotfn <- function(panel) {
     if (panel$plot.type == "histogram")
       hist(panel$x)
     else
       if (panel$plot.type == "boxplot")
         boxplot(panel$x)
       else
         plot(density(panel$x))
     panel
   }
   panel <- rp.control(x = rnorm(50))
   rp.radiogroup(panel, plot.type,
          c("histogram", "boxplot", "density estimate"),
          action = data.plotfn, title = "Plot type")     
   rp.do(panel, data.plotfn)

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-26 04:37 , Processed in 0.028059 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表