getLayoutNameMapping(RCytoscape)
getLayoutNameMapping()所属R语言包:RCytoscape
getLayoutNameMapping
getLayoutNameMapping
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Cytoscape 'Layout' menu lists many layout algorithms, but the names presented there are different from the names by which these algorithms are known to layout method. This method returns a named list in which the names are from the GUI, and the values identify the names you must use to choose an algorithms in the programmatic interface.
Cytoscape的“布局”菜单中列出了许多布局算法,但提出了有不同的名称是从这些算法被称为布局方法的名称。此方法返回一个名为名单中的名称是从图形用户界面,和值确定的名字,你必须使用编程接口选择算法。
用法----------Usage----------
getLayoutNameMapping(obj)
参数----------Arguments----------
参数:obj
a CytoscapeConnectionClass object.
CytoscapeConnectionClass对象。
值----------Value----------
A named list of strings.
指定一个字符串列表。
作者(S)----------Author(s)----------
Paul Shannon
参见----------See Also----------
layout getLayoutNames getLayoutPropertyNames getLayoutPropertyType getLayoutPropertyValue setLayoutProperties
的布局getLayoutNames getLayoutPropertyNames getLayoutPropertyType getLayoutPropertyValue setLayoutProperties
举例----------Examples----------
cy <- CytoscapeConnection ()
layout.name.map <- getLayoutNameMapping (cy)
print (head (names (layout.name.map), n=3))
# [1] "Inverted Self-Organizing Map Layout" "Group Attributes Layout" "MOEN Layout"[[1]“倒自组织图布局”组属性布局“,”摩恩布局“]
print (head (as.character (layout.name.map), n=3))
# [1] "isom" "attributes-layout" "jgraph-moen"[[1]“ISOM”属性布局“,”jgraph摩恩“]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|