Learn R Programming

RCytoscape (version 1.22.0)

setNodeTooltipRule: setNodeTooltipRule

Description

Specify the node attribute to be used as the tooltip for each node. Non-character attributes are converted to strings before they are used as tooltips.

Usage

setNodeTooltipRule(obj, node.attribute.name)

Arguments

obj
a CytoscapeWindowClass object.
node.attribute.name
the node attribute whose values will, when this rule is applied, determine the tooltip on each node.

Value

None.

Examples

Run this code
  cw <- new.CytoscapeWindow ('setNodeTooltipRule.test', graph=makeSimpleGraph())
  displayGraph (cw)
  layoutNetwork(cw, 'jgraph-spring')
  redraw (cw)
  setNodeTooltipRule (cw, 'type')
  setNodeTooltipRule (cw, 'lfc')
  setNodeTooltipRule (cw, 'count')

Run the code above in your browser using DataLab