Metadata-Version: 2.1
Name: d3graph
Version: 0.1.5
Summary: Create interactive network in python with d3js
Home-page: https://github.com/erdogant/d3graph
Author: Erdogan Taskesen
Author-email: erdogant@gmail.com
License: UNKNOWN
Download-URL: https://github.com/erdogant/d3graph/archive/0.1.5.tar.gz
Description: # Interactive network creator (d3graph)
        [![Python](https://img.shields.io/pypi/pyversions/d3graph)](https://img.shields.io/pypi/pyversions/d3graph)
        [![PyPI Version](https://img.shields.io/pypi/v/d3graph)](https://pypi.org/project/d3graph/)
        [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/erdogant/d3graph/blob/master/LICENSE)
        [![Coffee](https://img.shields.io/badge/coffee-black-grey.svg)](https://erdogant.github.io/donate/?currency=USD&amount=5)
        [![Downloads](https://pepy.tech/badge/d3graph)](https://pepy.tech/project/d3graph)
        
            Star it if you like it!
        
        d3graph is a python package that simplifies the task of creating **interactive** and **stand-alone** networks in **d3 javascript** using **python**.
        For this package I was inspired by various examples shown on the internet. But all of these examples are purely based on javascript without any easy python package to generate the networks. Therefore I decided to create a package that automatically creates d3js javascript and html code based on a input adjacency matrix in python! Huray!
        
        <p align="center">
          <a href="https://erdogant.github.io/docs/d3graph/titanic_example/index.html">
             <img src="https://github.com/erdogant/d3graph/blob/master/docs/titanic_example/d3graph.png" width="600"/>
          </a>
        </p>
        
        This package provides functionality to create a interactive and stand-alone network that is build on d3 javascript. D3graph only requirs an adjacency matrix in the form of an pandas dataframe. Each column and index name represents a node whereas values >0 in the matrix represents an edge. Node links are build from rows to columns. Building the edges from row to columns only matters in directed cases. The network nodes and edges can be adjusted in weight, color etc, based on user defined paramters. 
        
        * <a href="https://erdogant.github.io/docs/d3graph/titanic_example/index.html">d3graph example</a> 
        
        ## Contents
        - [Installation](#%EF%B8%8F-installation)
        - [Quick Start](#-quick-start)
        - [Contribute](#-contribute)
        - [Citation](#-citation)
        - [Maintainers](#-maintainers)
        - [License](#-copyright)
        
        ## Installation
        d3graph is compatible with Python 3.6+ and runs on Linux, MacOS X and Windows. **Note**: d3graph requires networkx to be v2 or higher.
        It is distributed under the Apache 2.0 license. There are two ways to install d3graph:
        
        
        * Install d3graph from PyPI (recommended):
        ```
        pip install d3graph
        ```
        
        * Install d3graph from the GitHub source:
        ```bash
        git clone https://github.com/erdogant/d3graph.git
        cd d3graph
        pip install "networkx>=2"
        python setup.py install
        ```  
        
        ## Quick Start
        In order to create an interactive and stand-alone d3graph, following workflow can be used:
        
        * Import d3graph method
        ```python
        from d3graph import d3graph
        ```
        
        * Create simple example dataset for which the input matrix should look this:
        <p align="left">
          <img src="https://github.com/erdogant/d3graph/blob/master/docs/figs/input_adjmat.png" width="500" />
        </p>
        
        ```python
        G = nx.karate_club_graph()
        adjmat = nx.adjacency_matrix(G).todense()
        adjmat = pd.DataFrame(index=range(0,adjmat.shape[0]), data=adjmat, columns=range(0,adjmat.shape[0]))
        adjmat.iloc[3,4]=5
        adjmat.iloc[4,5]=6
        ```
        
        * Make d3graph
        ```python
        G_d3   = d3graph(adjmat)
        ```
        
        The output looks as below:
        <p align="center">
          <img src="https://github.com/erdogant/d3graph/blob/master/docs/figs/d3graph_1.png" width="300" />
          <img src="https://github.com/erdogant/d3graph/blob/master/docs/figs/d3graph_2.png" width="300" />
          <img src="https://github.com/erdogant/d3graph/blob/master/docs/figs/d3graph_3.png" width="300" />
          <img src="https://github.com/erdogant/d3graph/blob/master/docs/figs/d3graph_4.png" width="300" />
        </p>
        
        
        ### Contribute
        * Thanks to Oliver Verver who helped to fix some bugs in d3js (https://github.com/oliver3).
        * All kinds of contributions are welcome!
        
        ### Citation
        Please cite d3graph in your publications if this is useful for your research. Here is an example BibTeX entry:
        ```BibTeX
        @misc{erdogant2019d3graph,
          title={d3graph},
          author={Erdogan Taskesen},
          year={2019},
          howpublished={\url{https://github.com/erdogant/d3graph}},
        }
        ```
        
        ### Maintainer
        * Erdogan Taskesen, github: [erdogant](https://github.com/erdogant)
        * Contributions are welcome.
        * If you wish to buy me a <a href="https://erdogant.github.io/donate/?currency=USD&amount=5">Coffee</a> for this work, it is very appreciated :)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
