rp.clearlines(rpanel)
rp.clearlines()所属R语言包:rpanel
Remove lines from an rpanel image
删除线从rpanel图像中
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function removes line(s) from an rpanel image widget: rp.clearlines removes all the lines from an image while rp.deleteline deletes only a given line.
此功能删除线(S)图像部件的rpanel:rp.clearlines删除rp.deleteline将会删除图像,而只是一个给定的行中的所有行的。
用法----------Usage----------
rp.clearlines(panel, image)
参数----------Arguments----------
参数:panel
the panel which contains the image. This may be passed as a panelname string or the panel object itself.
面板,其中包含的图像。这可能是通过作为一个panelname的字符串或面板对象本身。
参数:image
the name of the image within the panel.
在面板内的图像的名称。
值----------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.image,rp.line
rp.image,rp.line
实例----------Examples----------
if (interactive()) {
panel <- rp.control()
image.file <- file.path(system.file(package = "rpanel"), "images", "gulllmks.gif")
rp.image(panel, image.file, id = "gulls.image")
rp.line(panel, gulls.image, 10, 10, 100, 100, color = "green")
rp.line(panel, gulls.image, 100, 100, 100, 10, color = "blue")
rp.clearlines(panel, gulls.image)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|