Skip to main content

NodeStickyLinks by python

Project description

StickyLinks: A Novel Edge Drawing in Node-link Diagram

A Python implementation of paper 🔗 Sticky Links: Encoding Quantitative Data of Graph Edges

image Sticky Links is introduced as a novel visual encoding method that draws graph links with stickiness, as shown in the right of the above figure. The conventional graph links use their thickness to encode quantitative attributes (shown on the left). Taking the metaphor of links with glues, sticky links represent numerical link attributes using spiky shapes, ranging from two broken spikes for weak connections to connected lines for strong connections.

check out an online demo

Dependencies & Installation

StickyLinks requires the following Python packages:

  • Python: Version 3.9 or later (3.11 recommended).

  • Third-Party Libraries:

    • pandas: For data manipulation and analysis.
    • networkx: To create and work with a common graph layout algorithm.
    • pycairo: A set of Python bindings for the Cairo graphics library.

Install these packages using the following command:

pip install pandas networkx pycairo
  • Install our library NodeStickyLinks:

To install StickyLinks, open your command prompt and run:

pip install NodeStickyLinks

Usage on Windows

There are two kinds of ways you might use our NodeStickyLinks library to draw graphs with sticky links. One is to envoke the functions in your python source code. The other is to use our interactive UI interface to draw the graph.

1. Envoke StickyLinks in Python Source Codes

If you're coding on a Python project and want to use StickyLinks for graph visualization, you can import and envode its functions as part of your code.

  1. Import the Package: First, import the drawsticky module in your Python script:

    from NodeStickyLinks import drawsticky
    
  2. Utilize Drawing Functions: Second, use the function drawsticky to draw graphs and edges. Here's an example of how you can use this function:

    # Example usage
    #Define parameters for the graph drawing()
    edge_style = 'stickiness' # Choose 'thickiness' or 'stickiness'
    file_path =  'path/to/your/datafile.json'  # Path to the JSON or CSV data file
    nodes_radius = 5.0 # Radius of the nodes
    edge_width = 2 # Width of the canvas for the drawing
    canvas_width = 700 # Width of the canvas for the drawing
    canvas_height = 700 # Height of the canvas for the drawing
    
    # Draw the graph
    draw_graph(edge_style, file_path, nodes_radius, edge_width, canvas_width, canvas_height)
    
    # After running the above function, two files will be created:
    # 'graph.svg' and 'graph.png', containing the visual representation of the graph.
    

    Replace the function calls in the example with the actual functions you need from the drawsticky module, based on your graph drawing requirements.

2. Run StickyLinks Interactive User Interface

We developed a mini UI for interactive usage of StickyLinks, where you can type in parameters and see results without writing any code.

  1. Run the Interactive Script:

Firstly, use Python to run the run_drawsticky module, which contains the interactive run function:

  from nodespikylink import run_drawsticky

  run_drawsticky.run()
  1. Follow the Prompts

The script will prompt you for inputs, including the path to your data file, and other parameters required for drawing your graph. Enter these details as prompted to generate the graph visualization.

Link Style
  • Prompt: Choose the style for graph links.
  • Input: Type stickiness or thickiness. Please use lowercase letters.
  • Note: This selection will define the visual appearance of the links in your graph.
Canvas Dimensions
  • Prompt: Set the canvas size for your graph.
  • Input: Provide width and height in pixels (e.g., 600, 800, 1200).
  • Note: By default, the canvas is set to a rectangular shape.
Node Radius
  • Prompt: Determine the radius size for nodes in your graph.
  • Input: Enter a numerical value in pixels, preferably between 2 and 6.
  • Note: Based on our tests, a radius within this range should provide a balanced visual representation depending on your graph's scale.
Line Width
  • Prompt: Set the width for the lines (edges) in your graph.
  • Input: Enter a numerical value in pixels, ideally between 1 and 3.
  • Note: This value should be chosen according to your graph's scale; our testing suggests that values in this range are generally effective.
Graph Layout Selection
  • Prompt: Choose a layout for organizing the graph.

  • Input Options:

    • 0 for no specific layout.
    • 1 for circular_layout.
    • 2 for random_layout.
    • 3 for shell_layout.
    • 4 for spring_layout.
    • 5 for spectral_layout.
  • Note: Each layout option offers a unique arrangement and perspective for your graph nodes.

After completing these inputs, StickyLinks will draw a graph visualization based on your specified preferences.

  1. Output Formats

After completing the input prompts and processing your data, StickyLinks will generate the graph visualization. The results will be available in two formats:

  • SVG Format: A scalable vector graphic file, ideal for high-quality, scalable visualizations and for further editing in vector graphic tools such as online editor boxy SVG.
  • PNG Format: A portable network graphics file.

These files will be saved in the specified output directory or a default location if not specified. You can use these files for presentations, reports, or further analysis.

📊 Example of Data

StickyLinks supports two graph data formats: JSON and CSV. Both formats are intended for undirected graphs. Most importantly, the values under the 'weight' field must range between 0 and 1.

1️⃣ JSON Graph Format

In the JSON format, your data must include 'nodes' and 'links' fields:

  • Nodes: Each node should have a 'name' and 'pos' (position) field. The 'pos' field must include 'x' and 'y' coordinates.
  • Links: Links between nodes. If your graph includes weights, each link can or not have a 'weight' key. If the 'weight' key is specified, the graph will be drawn with the specified weights for edges (the first example). If no 'weight' key is specified, the graph will be draw with constant weight for edges (the second exmaple).

JSON1 Example:

{

    "nodes": [

        {"name": "Node1", "pos": {"x": 0, "y": 0}},

        {"name": "Node2", "pos": {"x": 1, "y": 1}},

        {"name": "Node3", "pos": {"x": 0, "y": 1}}

    ],

    "links": [

        {"source": "Node1", "target": "Node2", "weight": 1},

        {"source": "Node1", "target": "Node3", "weight": 0.2}

    ]

}

JSON2 Example:

{

    "nodes": [

        {"name": "1", "pos": {"x": 0, "y": 0}},

        {"name": "2", "pos": {"x": 1, "y": 1}},

        {"name": "3", "pos": {"x": 0, "y": 1}}

    ],

    "links": [

        {"source": "1", "target": "2"},

        {"source": "1", "target": "3"}

    ]

}

2️⃣ CSV Graph Format

StickyLinks also supports CSV-formatted graphs. The CSV files should adhere to the following structure:

  • Delimiter: we now support comma delimiter.
  • No Headers: The CSV files should not contain headers.
  • Columns: The first column is the first node id, the second column is the second node id, and the last column is the edge weight.
  • Encoding: Files must be UTF-8 encoded.

CSV1 Example:

0,1,0.6
0,2,0.6
0,3,0.6

Ensure that your data files conform to these formats for optimal compatibility with StickyLinks.

API Reference📚

The drawsticky module provides a variety of functions for graph visualization. Below are descriptions of key functions:

draw_graph(context, nodes, edges, params)

Renders the entire graph with customizable edge styles, node sizes, and canvas dimensions

  • context: Drawing context.
  • nodes: Node data.
  • edges: Edge data.
  • params: Graph drawing parameters.

draw_nodes(context, nodes, radius)

Draws graph nodes.

  • context: Drawing context.
  • nodes: Node data.
  • radius: Radius of nodes.

draw_stickiness_edge(...)draw_thickness_edge(...)

Functions to draw different types of edges.

gen_sticky(...)

Generates stickiness edges based on parameters.

get_control_point(...)

Calculate four control points for stickiness edge.

(Note: This is a condensed overview. Please refer to the source code in drawsticky.py for detailed comments and more functions.)

Example Visualization

The visualization presented below showcases the stickiness style applied to the Miserable and Star War datasets.

image

To explore this dataset further, you can access the Miserables dataset here: Miserables Dataset JSON Star War Dataset JSON

Citation

If you find our work useful for your research, please consider citing our paper :)

@article{Stickylinks2023_lu,

title = {Sticky Links: Encoding Quantitative Data of Graph Edges},

author = {Min Lu, Xiangfang Zeng, Joel Lanir, Xiaoqin Sun, Guozheng Li, Daniel Cohen-Or, and Hui Huang},

journal = {IEEE Transactions on Visualization and Computer Graphics (to appear)},

volume = {},

number = {}, 


pages = {--}, 


year = {2023},

}

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

NodeStickyLinks-0.2.tar.gz (13.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

NodeStickyLinks-0.2-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page