Network Graph#

Download this notebook from GitHub (right-click to download).


The data in this example represents Facebook social circle obtained from SNAP.

Most examples work across multiple plotting backends, this example is also available for:

import pandas as pd
import holoviews as hv
hv.extension('matplotlib')
hv.output(fig='svg')

Declaring data#

edges_df = pd.read_csv('../../../assets/fb_edges.csv')
nodes_df = pd.read_csv('../../../assets/fb_nodes.csv')

fb_nodes = hv.Nodes(nodes_df).sort()
fb_graph = hv.Graph((edges_df, fb_nodes), label='Facebook Circles')

Plot#

fb_graph.opts(
    cmap='tab20', node_color='circle', fig_size=350,
    show_frame=False, xaxis=None, yaxis=None, node_size=10)
TypeError [Call holoviews.ipython.show_traceback() for details]
'<' not supported between instances of 'str' and 'float'
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Download this notebook from GitHub (right-click to download).