Skip to content
/ netvis Public

NetVis is a package for interactive visualization Python NetworkX graphs within Jupyter Lab. It leverages D3.js for dynamic rendering and supports HTML export, making network analysis effortless.

License

Notifications You must be signed in to change notification settings

cmscom/netvis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

netvis

NetVis is a package for interactive visualization of Python NetworkX graphs within JupyterLab. It leverages D3.js for dynamic rendering and provides a high-level Plotter API for effortless network analysis.

Version 0.5.0 introduces the NetworkX Plotter API, enabling direct visualization of NetworkX graph objects without manual JSON conversion.

Installation

Basic Installation

You can install using pip:

pip install net_vis

This provides core functionality with layouts: spring, circular, and random.

Full Installation (Recommended)

For all layout algorithms including kamada_kawai and spectral:

pip install net_vis[full]

This installs optional dependencies (scipy) required for advanced layout algorithms.

Note: NetVis uses a MIME renderer that works automatically in JupyterLab 3.x and 4.x environments. No manual extension enabling is required.

Quick Start

NetworkX Plotter API (New in v0.5.0)

The easiest way to visualize NetworkX graphs in JupyterLab:

from net_vis import Plotter
import networkx as nx

# Create a NetworkX graph
G = nx.karate_club_graph()

# Visualize with one line
plotter = Plotter(title="Karate Club Network")
plotter.add_networkx(G)

Custom Styling

Control node colors, labels, and layouts:

# Color nodes by attribute, customize labels
plotter = Plotter(title="Styled Network")
plotter.add_networkx(
    G,
    node_color="club",              # Use 'club' attribute for colors
    node_label=lambda d: f"Node {d.get('name', '')}",  # Custom labels
    edge_label="weight",            # Show edge weights
    layout='kamada_kawai'           # Choose layout algorithm
)

Supported Features

  • Graph Types: Graph, DiGraph, MultiGraph, MultiDiGraph
  • Layouts: spring (default), kamada_kawai, spectral, circular, random, or custom functions
  • Styling: Attribute-based or function-based color/label mapping
  • Automatic: Node/edge attribute preservation in metadata

Low-Level API (Advanced)

For manual control over the visualization data structure:

import net_vis

data = """
{
  "nodes": [
    {
      "id": "Network"
    },
    {
      "id": "Graph"
    }
  ],
  "links": [
    {
      "source": "Network",
      "target": "Graph"
    }
  ]
}
"""

w = net_vis.NetVis(value=data)
w

When executed, an interactive D3.js force-directed graph is displayed.

  • Display Sample

Desplay Sample

JpyterLab Sample

Development Installation

Create a dev environment:

python -m venv venv-netvis
source venv-netvis/bin/activate

Install the Python package. This will also build the TypeScript package:

pip install -e ".[test, examples, docs]"

Install JavaScript dependencies and build the extension:

yarn install
jupyter labextension develop --overwrite .
yarn run build

Note: As of version 0.4.0, nbextension support has been removed. NetVis now exclusively uses the MIME renderer architecture for JupyterLab 3.x and 4.x.

How to see your changes

TypeScript:

If you use JupyterLab to develop, you can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.

# Watch the source directory in one terminal, automatically rebuilding when needed
yarn run watch
# Run JupyterLab in another terminal
jupyter lab

After a change, wait for the build to finish and then refresh your browser and the changes should take effect.

Python:

If you make a change to the Python code, you will need to restart the notebook kernel to have it take effect.

Contributing

Contributions are welcome!
For details on how to contribute, please refer to CONTRIBUTING.md.

Special Thanks

This project was initiated on the proposal of Shingo Tsuji. His invaluable contributions —from conceptual planning to requirements definition— have been instrumental in bringing this project to fruition. We extend our deepest gratitude for his vision and support.

About

NetVis is a package for interactive visualization Python NetworkX graphs within Jupyter Lab. It leverages D3.js for dynamic rendering and supports HTML export, making network analysis effortless.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published