Bind network graph data

def bind_network_graph_data(
self,
links_source: str = None,
links_target: str = None,
links_value: str = None,
nodes_id: str = None,
nodes_group: str = None,
nodes_size: str = None,
nodes_image: str = None,
nodes_metadata: Union[list, str] = None
)
python
ArgumentsType hintDescription
selfFlourishReturns the Flourish object
links_sourcestr, optionalLinks source
links_targetstr, optionalLinks target
links_valuestr, optionalSize by. A numerical value used to set the thickness of the links. Flourish type hint: column
nodes_idstr, optionalID. A unique identifier for each point in the network. If not specified, point information will be extracted from the links sheet. Flourish type hint: column
nodes_groupstr, optionalColor by. A group to which the point belongs. If set, can be used to color the points. Ignored if ID not set. Flourish type hint: column
nodes_sizestr, optionalSize by. A numerical value used to size the points. Ignored if ID not set. Flourish type hint: column
nodes_imagestr, optionalImage. An image to go into the circle. Flourish type hint: column
nodes_metadataUnion[list, str], optionalInfo for popups. One or more columns of information (text, image URLs , embedded charts etc) to include in popups and panels Ignored if ID not set. Flourish type hint: columns