Index

DeepVisual Documentation

DeepVisual is a Python library for creating advanced visualizations of graphs and links. It provides intuitive and flexible tools for visualizing different types of links.

Features

  • Customizable Styling: Extensive options for colors, sizes, and layouts
  • Interactive Plots: Generate interactive matplotlib visualizations

Quick Start

import deepvisual as dv
import pandas as pd
 
# Create a sample dataframe
df = pd.DataFrame({
    'from': ['1', '2', '3'],
    'to': ['2', '3', '1']
})
 
# Visualize the connections
dv.visualize_link_doublet(df)

Installation

pip install deepvisual

or local installation

pip install -e /path/deepvisual

Documentation Sections

License

Unlicense license (opens in a new tab)