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