| showNodes,RCyjs-method {RCyjs} | R Documentation |
showNodes show the named nodes from view
## S4 method for signature 'RCyjs' showNodes(obj, nodeIDs)
obj |
an RCyjs instance |
no return value
if(interactive()){
g <- simpleDemoGraph()
rcy <- RCyjs(title="rcyjs demo", graph=g)
target <- nodes(g)[1]
hideNodes(rcy, "A")
getNodes(rcy, "hidden")
getNodes(rcy, "visible")
showNodes(rcy, "A")
getNodes(rcy, "visible")
}