| setDefaultNodeHeight,RCyjs-method {RCyjs} | R Documentation |
setDefaultNodeHeight set all nodes to the same specifed width, in pixels
## S4 method for signature 'RCyjs' setDefaultNodeHeight(obj, newValue)
obj |
an RCyjs instance |
newValue |
a numeric, in pixels |
no value returned
if(interactive()){
g <- simpleDemoGraph()
rcy <- RCyjs(title="setDefaultNodeHeight", graph=g)
layout(rcy, "cose")
setDefaultNodeHeight(rcy, 80)
}