Description Usage Arguments Value Author(s) See Also Examples
Returns a list of the tunable properties for the specified layout.
1 | getLayoutPropertyType(obj, layout.name, property.name)
|
obj |
a |
layout.name |
a |
property.name |
a |
A character string specifying the type. These types do not always necessarily to R types.
Paul Shannon
layout getLayoutNames getLayoutNameMapping getLayoutPropertyNames getLayoutPropertyValue setLayoutProperties
1 2 3 4 5 6 7 | cy <- CytoscapeConnection ()
prop.names <- getLayoutPropertyNames (cy, 'isom')
print (prop.names)
# "maxEpoch" "sizeFactor" "radiusConstantTime" "radius" "minRadius" "initialAdaptation" "minAdaptation" "coolingFactor"
sapply (prop.names, function (pn) getLayoutPropertyType (cy, 'isom', pn))
# maxEpoch sizeFactor radiusConstantTime radius minRadius initialAdaptation minAdaptation coolingFactor
# "INTEGER" "INTEGER" "INTEGER" "INTEGER" "INTEGER" "DOUBLE" "DOUBLE" "DOUBLE"
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.