setNodeBorderWidthRule(RCytoscape)
setNodeBorderWidthRule()所属R语言包:RCytoscape
setNodeBorderWidthRule
setNodeBorderWidthRule
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Specify the node attribute which controls the thickness of the nodes displayed in the graph. This is currently only a lookup mapping. An interpolated mapping will be added in the future.
指定节点的属性控制图中显示的节点的厚度。这是目前唯一一个查找映射。插值的映射将在未来加入。
用法----------Usage----------
setNodeBorderWidthRule(obj, node.attribute.name, attribute.values, line.widths, default.width)
参数----------Arguments----------
参数:obj
a CytoscapeWindowClass object.
CytoscapeWindowClass对象。
参数:node.attribute.name
the node attribute whose values will, when this rule is applied, determine the nodeBorderWidth on each node.
节点属性的值时,将应用此规则,确定每个节点nodeBorderWidth。
参数:attribute.values
observed values of the specified attribute on the nodes.
观测值的节点上指定的属性。
参数:line.widths
the corresponding widths.
相应的宽度。
参数:default.width
use this where the rule fails to apply
使用本规则未申请
值----------Value----------
None.
没有。
作者(S)----------Author(s)----------
Paul Shannon
举例----------Examples----------
cw <- new.CytoscapeWindow ('setNodeBorderWidthRule.test', graph=makeSimpleGraph())
displayGraph (cw)
layout (cw, 'jgraph-spring')
redraw (cw)
node.attribute.values = c ('kinase', 'transcription factor', 'glycoprotein')
line.widths = c (0, 8, 16)
setNodeBorderWidthRule (cw, 'type', node.attribute.values, line.widths)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|