Metadata-Version: 2.1
Name: igviz
Version: 0.1.0
Summary: A library to plot Graphs with Plotly.
Home-page: https://github.com/Ashton-Sidhu/plotly-graph
Author: Ashton Sidhu
Author-email: ashton.sidhu1994@gmail.com
License: MIT
Description: # Interactive Graph Visualization
        ![Tests](https://github.com/Ashton-Sidhu/plotly-graph/workflows/Tests/badge.svg)
        
        <!-- START doctoc generated TOC please keep comment here to allow auto update -->
        <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
        ## Table of Contents
        
        - [Introduction](#introduction)
        - [Usage](#usage)
        - [Installation](#installation)
        - [Feedback](#feedback)
        - [Contributors](#contributors)
        
        <!-- END doctoc generated TOC please keep comment here to allow auto update -->
        
        ## Introduction
        
        Interactive Graph Visualization (igviz) is a library to help visualize graphs interactively using Plotly. This library provides a customizable api for visualizing graphs in a neat, visually appealing plot. It keeps larger graphs much more clean by displaying minimal text information and highlights node properties and relationships using colour and size while providing the same text information when needed.
        
        ![Default Visualization](docs/images/default.png)
        
        ## Usage
        
        ### Basic
        
        ```python
        import networkx as nx
        import igviz as ig
        
        G = nx.random_geometric_graph(200, 0.125)
        nx.set_node_attributes(G, 3, "prop")
        
        ig.plot(G)
        ```
        
        The default plot colors and sizes the nodes by the Degree but it is configurable.
        
        ![Default Visualization](docs/images/default.png)
        
        ### Configurations
        
        ```python
        ig.plot(
            G, # Your graph
            title="My Graph",
            sizing_method="static", # Makes node sizes the same
            color_method="##ffcccb", # Makes all the node colours black,
            node_text=["prop"], # Adds the 'prop' property to the hover text of the node
            annotation_text="Visualization made by <a href='https://github.com/Ashton-Sidhu/plotly-graph'>igviz</a> & plotly.", # Adds a text annotation to the graph
        )
        ```
        ![](docs/images/config1.png)
        
        ```python
        ig.plot(
            G,
            title="My Graph",
            sizing_method="prop", # Makes node sizes the size of the "prop" property
            color_method="prop", # Colors the nodes based off the "prop" property and a color scale,
            node_text=["prop"], # Adds the 'prop' property to the hover text of the node
        )
        ```
        
        ![](docs/images/config2.png)
        
        #### How to add your own custom sizing method and colour method
        
        To add your own custom sizing and color method, just pass a list to the `sizing_method` and `color_method`.
        
        ```python
        color_list = []
        sizing_list = []
        
        for node in G.nodes():
            size_and_color = G.degree(node) * 3
        
            color_list.append(size_and_color)
            sizing_list.append(size_and_color)
        
        ig.plot(
            G,
            title="My Graph",
            sizing_method=sizing_list, # Makes node sizes the size of the "prop" property
            color_method=color_list, # Colors the nodes based off the "prop" property and a color scale,
            node_text=["prop"], # Adds the 'prop' property to the hover text of the node
        )
        ```
        
        ![](docs/images/config3.png)
        
        ## Installation
        
        `pip install igviz`
        
        ## Feedback
        
        I appreciate any feedback so if you have any feature requests or issues make an issue with the appropriate tag or futhermore, send me an email at ashton.sidhu1994@gmail.com
        
        ## Contributors
        
        This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification and is brought to you by these [awesome contributors](./CONTRIBUTORS.md).
        
Keywords: datascience,machinelearning,visualization,graph
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Development Status :: 4 - Beta
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
