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