Skip to main content

Python Network(Graph) Visualization

Project description

PyNetViz(Python Network Visualization)
========
A python network(graph) visualization with networkx
It works in IPython(Jupyter)

https://github.com/koorukuroo/pynetviz

Web Demo
http://goo.gl/7U2IlV

Acknowledgement
========
Ulsan National Institute of Science and Technology
School of Natural Science
Mathematical Sciences
http://www.math.unist.ac.kr


Installing
----------

.. code-block:: python

pip install pynetviz

Usage
-----

.. code-block:: python

import networkx as nx
import pynetviz.sigmajs as nvs

G = nx.Graph()
G.add_edges_from([(1,2),(2,3),(3,4),(5,6)])
G.add_edge(1, 3)
G.add_edge(1, 6)
nvs.make_gexf(G)
nvs.make_html(drawEdges='true')
nvs.view_html()

Output:

.. image:: http://i.imgur.com/i5fQyuJ.png
:alt: Network(Graph) Visualization


Layout
--------------------------

.. code-block:: python

G = nx.Graph()
G.add_edges_from([(1,2),(2,3),(3,4),(5,6)])
G.add_edge(1, 3)
G.add_edge(1, 6)
layout = nx.spring_layout(G)
nvs.make_gexf(G, layout)
nvs.make_html(drawEdges='true')
nvs.view_html()


Example
--------------------------

.. code-block:: python

G = nx.karate_club_graph()
layout = nx.spring_layout(G)
nvs.make_gexf(G, layout, size=nx.degree_centrality(G))
nvs.make_html(drawEdges='true')
nvs.view_html(height=1000)


* ``G`` Graph object of networkx.
* ``layout`` Position nodes.
* ``size`` Size nodes.
* ``drawEdges`` True or False.
* ``height`` Window height size.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

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

Source Distribution

pynetviz-0.1.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

pynetviz-0.1.macosx-10.5-x86_64.tar.gz (4.8 kB view hashes)

Uploaded Source

Supported by

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