getAllNodeAttributes(RCytoscape)
getAllNodeAttributes()所属R语言包:RCytoscape
getAllNodeAttributes
getAllNodeAttributes
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create a data frame with all the node attributes for the graph contained by the supplied CytoscapeWindow object. Only the local copy of the graph is queried. If you want all the (possibly different) node attributes from the Cytoscape network which corresponds to this graph, one option is to create a new CytoscapeWindow; see the existing.CytoscapeWindow function.
载由提供CytoscapeWindow对象图的所有节点的属性创建一个数据框。只图的本地副本进行查询。如果你想所有的(可能有不同的属性)从这个图对应的Cytoscape的网络节点,一个选项是创建一个新CytoscapeWindow;看到existing.CytoscapeWindow功能。
用法----------Usage----------
getAllNodeAttributes(obj, onlySelectedNodes=FALSE)
参数----------Arguments----------
参数:obj
a CytoscapeWindowClass object object.
CytoscapeWindowClass对象的对象。
参数:onlySelectedNodes
a logical variable, used to restrict the query.
logical变量,用于限制查询。
值----------Value----------
A data frame, with a column for each attribute, a row for each node.
一个数据框,每个属性,为每个节点的行与列。
作者(S)----------Author(s)----------
Paul Shannon
参见----------See Also----------
getNodeAttribute deleteNodeAttribute
getNodeAttribute deleteNodeAttribute
举例----------Examples----------
window.name = 'demo.getAllNodeAttributes'
cw = new.CytoscapeWindow (window.name, graph=makeSimpleGraph ())
displayGraph (cw)
redraw (cw)
layout (cw)
# get all attributes for all nodes[得到所有节点的所有属性]
tbl.noa = getAllNodeAttributes (cw, onlySelectedNodes=FALSE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|