grid.add(grid)
grid.add()所属R语言包:grid
Add a Grid Graphical Object
新增电网图形对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add a grob to a gTree or a descendant of a gTree.
GROB添加,到gTree或后代的gTree。
用法----------Usage----------
grid.add(gPath, child, strict = FALSE, grep = FALSE,
global = FALSE, allDevices = FALSE, redraw = TRUE)
addGrob(gTree, child, gPath = NULL, strict = FALSE, grep = FALSE,
global = FALSE, warn = TRUE)
setChildren(x, children)
参数----------Arguments----------
参数:gTree, x
A gTree object.
一个gTree对象。
参数:gPath
A gPath object. For grid.add this specifies a gTree on the display list. For addGrob this specifies a descendant of the specified gTree.
gPath对象。 grid.add指定了一个显示列表gTree。 addGrob指定一个的指定gTree的后裔。
参数:child
A grob object.
一个GROB对象。
参数:children
A gList object.
一个GList对象。
参数:strict
A boolean indicating whether the gPath must be matched exactly.
一个布尔值,指示的gPath是否必须完全匹配。
参数:grep
A boolean indicating whether the gPath should be treated as a regular expression. Values are recycled across elements of the gPath (e.g., c(TRUE, FALSE) means that every odd element of the gPath will be treated as a regular expression).
一个布尔值,指示是否应作为一个正则表达式处理gPath。跨元素回收值gPath(例如,c(TRUE, FALSE)意味着奇数每gPath的元素将作为一个正则表达式处理)。
参数:global
A boolean indicating whether the function should affect just the first match of the gPath, or whether all matches should be affected.
一个布尔值,指示的功能是否应该只是第一场比赛的影响gPath,或是否应受所有比赛。
参数:warn
A logical to indicate whether failing to find the specified gPath should trigger an error.
逻辑表示未能找到指定的gPath是否应触发一个错误。
参数:allDevices
A boolean indicating whether all open devices should be searched for matches, or just the current device. NOT YET IMPLEMENTED.
一个布尔值,指示是否所有开放的设备应匹配搜索,或只是当前设备。尚未实施。
参数:redraw
A logical value to indicate whether to redraw the grob.
一个逻辑值,指明是否重绘GROB。
Details
详情----------Details----------
addGrob copies the specified grob and returns a modified grob.
addGrob会将指定的的GROB和返回修改后的格罗。
grid.add destructively modifies a grob on the display list. If redraw is TRUE it then redraws everything to reflect the change.
grid.add破坏性修改显示列表上的格罗。如果redraw是TRUE然后重绘以反映变化的一切。
setChildren is a basic function for setting all children of a gTree at once (instead of repeated calls to addGrob).
setChildren是为定于一个gTree一次所有的孩子(而不是一再呼吁addGrob)的基本功能。
值----------Value----------
addGrob returns a grob object; grid.add returns NULL.
addGrob返回格罗对象的;grid.add返回NULL。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
grob, getGrob, addGrob, removeGrob.
grob,getGrob,addGrob,removeGrob。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|