getLayoutPropertyType(RCytoscape)
getLayoutPropertyType()所属R语言包:RCytoscape
getLayoutPropertyType
getLayoutPropertyType
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns a list of the tunable properties for the specified layout.
返回指定布局的调谐性能。
用法----------Usage----------
getLayoutPropertyType(obj, layout.name, property.name)
参数----------Arguments----------
参数:obj
a CytoscapeConnectionClass object.
CytoscapeConnectionClass对象。
参数:layout.name
a string object.
string对象。
参数:property.name
a string object.
string对象。
值----------Value----------
A character string specifying the type. These types do not always necessarily to R types.
指定一个字符串类型。这些类型并不一定总是为R类型。
作者(S)----------Author(s)----------
Paul Shannon
参见----------See Also----------
layout getLayoutNames getLayoutNameMapping getLayoutPropertyNames getLayoutPropertyValue setLayoutProperties
的布局getLayoutNames getLayoutNameMapping getLayoutPropertyNames getLayoutPropertyValue setLayoutProperties
举例----------Examples----------
cy <- CytoscapeConnection ()
prop.names <- getLayoutPropertyNames (cy, 'isom')
print (prop.names)
# "maxEpoch" "sizeFactor" "radiusConstantTime" "radius" "minRadius" "initialAdaptation" "minAdaptation" "coolingFactor" [“maxEpoch”,“sizeFactor”radiusConstantTime“”半径“的”minRadius“”initialAdaptation“minAdaptation”“coolingFactor”]
sapply (prop.names, function (pn) getLayoutPropertyType (cy, 'isom', pn))
# maxEpoch sizeFactor radiusConstantTime radius minRadius initialAdaptation minAdaptation coolingFactor [maxEpoch sizeFactor radiusConstantTime半径minRadius initialAdaptation minAdaptation coolingFactor]
# "INTEGER" "INTEGER" "INTEGER" "INTEGER" "INTEGER" "DOUBLE" "DOUBLE" "DOUBLE" [“整数”,“整数”,“整数”,“整数”,“整数”“双”,“双”“双”]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|