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 details)

Uploaded Source

Built Distribution

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

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

Uploaded Source

File details

Details for the file pynetviz-0.1.tar.gz.

File metadata

  • Download URL: pynetviz-0.1.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pynetviz-0.1.tar.gz
Algorithm Hash digest
SHA256 3d12eb1438b5255fa1fa7a019e4a75ae19fac373cdd2524452506e4f5607e7e0
MD5 c862c05af303551f5fcb40d15039a6b0
BLAKE2b-256 e2739846e55a6624cb179d2642a12b00ca5962fac973922e0973957d3d6a4033

See more details on using hashes here.

File details

Details for the file pynetviz-0.1.macosx-10.5-x86_64.tar.gz.

File metadata

File hashes

Hashes for pynetviz-0.1.macosx-10.5-x86_64.tar.gz
Algorithm Hash digest
SHA256 dcfe95b7e230b9fa4ca1460c9bd7a7ef58eebc113694c19d9b32bddb2ed015e5
MD5 e5f3d7a32c1faf76bbd1190caeae547d
BLAKE2b-256 6d80b7e8a78a9cb18851b83e59b5ac656b0b1742e5f9613827c42660006c1c9b

See more details on using hashes here.

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