jaal - your interactive network visualizer dashboard
Project description
Your interactive network visualizing dashboard
Documentation: Here
👉 What is Jaal
Jaal is a python based interactive network visualizing tool built using Dash and Visdcc. Along with the basic features, Jaal also provides multiple option to play with the network data such as searching graph, filtering and even coloring nodes and edges in the graph. And all of this within 2 lines of codes :)
👉 Requirements
Jaal requires following python packages,
- Dash
- dash_core_components
- dash_html_components
- dash_bootstrap_components
- visdcc
- pandas
👉 Install
Installing Jaal is super easy, just do the following,
pip install jaal
And you are done :)
Note, it's recommended to create a virtual enivornment before installing. This can be easily done using python -m venv myenv
and then to activate the env we need,
- (Windows)
.\\myvenv\\Scripts\\activate.bat
- (Linux)
source myvenv/bin/activate
👉 Getting started
After installing Jaal, we need to fetch the data and call plot
function in Jaal. This can be shown by playing with an included Game of Thrones dataset, as follows,
# import
from jaal import Jaal
from jaal.datasets import load_got
# load the data
edge_df, node_df = load_got()
# init Jaal and run server
Jaal(edge_df, node_df).plot()
Here first we import Jaal
main class and the dataset loading function load_got
. Later we load the GoT dataset from the datasets included in the package. This gives us two files,
- edge_df: its a pandas dataframe with atleast
from
andto
column, which represents the edge relationship between the entities - node_df: its an optional parameter, but should contains a
id
column with unique node names.
Note, edge_df is mandatory and node_df is optional. Also we can include additional columns in these files which are automatically considered as edge or node features respectively.
After running the plot, the console will prompt the default localhost address (127.0.0.1:8050
) where Jaal is running. Access it to see the following dashboard,
👉 Features
At present, the dashboard consist of following sections,
- Setting panel: here we can play with the graph data, it further contain following sections:
- Search: can be used to find a node in graph
- Filter: supports pandas query language and can be used to filter the graph data based on nodes or edge features.
- Color: can be used to color nodes or edges based on their categorical features. Note, currently only features with at max 20 cardinality are supported.
- Size: can be used to size nodes or edges based on their numerical features.
- Graph: the network graph in all its glory :)
👉 Examples
1. Searching
2. Filtering
3. Coloring
4. Size
👉 Extra settings
Display edge label
To display labels over edges, we need to add a label
attribute (column) in the edge_df
. Also, it has to be in string
format.
For example, using the GoT dataset, by adding the following line before the Jaal
call, we can display the edge labels.
# add edge labels
edge_df.loc[:, 'label'] = edge_df.loc[:, 'weight'].astype(str)
Display image in node
Currently it is possible to show image within node (with circular shape). For this, we need to put node_image_url
column in the node_df
with URLs for each node.
Directed edges
By default, Jaal
plot undirected edges. This setting can be changed by,
Jaal(edge_df, node_df).plot(directed=True)
Showing Custom Title
By default, id
is shown as title. To overwrite this, include a title
column with the respective data.
Showing Tooltip
By default, nodeid
is shown as tooltip. To overwrite this, include a title
column with the respective data.
Using vis.js settings
We can tweak any of the vis.js
related network visualization settings. An example is,
# init Jaal and run server
Jaal(edge_df, node_df).plot(vis_opts={'height': '600px', # change height
'interaction':{'hover': True}, # turn on-off the hover
'physics':{'stabilization':{'iterations': 100}}}) # define the convergence iteration of network
For a complete list of settings, visit vis.js website.
Using gunicorn
We can host Jaal on production level HTTP server using gunicorn
by first creating the app file (jaal_app.py
),
# import
from jaal import Jaal
from jaal.datasets import load_got
# load the data
edge_df, node_df = load_got()
# create the app and server
app = Jaal(edge_df, node_df).create()
server = app.server
then from the command line, start the server by,
gunicorn jaal_app:server
Note, Jaal.create()
takes directed
and vis_opts
as arguments. (same as Jaal.plot()
except the host
and port
arguments)
👉 Common Problems
Port related issue
If you are facing port related issue, please try the following way to run Jaal. It will try different ports, until an empty one is found.
port=8050
while True:
try:
Jaal(edge_df, node_df).plot(port=port)
except:
port+=1
👉 Issue tracker
Please report any bug or feature idea using Jaal issue tracker: https://github.com/imohitmayank/jaal/issues
👉 Collaboration
Any type of collaboration is appreciated. It could be testing, development, documentation and other tasks that is useful to the project. Feel free to connect with me regarding this.
👉 Contact
You can connect with me on LinkedIn or mail me at mohitmayank1@gmail.com.
👉 License
Jaal is licensed under the terms of the MIT License (see the file LICENSE).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jaal-0.1.7.tar.gz
.
File metadata
- Download URL: jaal-0.1.7.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f41178a4f9b1bd4bacfd49c81a2d7a4eefa5dd775dff41def592a64ce31a58a1 |
|
MD5 | 494019669cdac6ba370fe979ca4c232c |
|
BLAKE2b-256 | be93949d34f5a7038d1c5ea771f20223820698ece056afc721d7e55a93fb2971 |
File details
Details for the file jaal-0.1.7-py3-none-any.whl
.
File metadata
- Download URL: jaal-0.1.7-py3-none-any.whl
- Upload date:
- Size: 4.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | daf39e6732d5adb9461efdddb7b703a205786521ae681f981d70ea1e72fab328 |
|
MD5 | edb0cd431681acc7e52f5a3bb3ec7276 |
|
BLAKE2b-256 | 8fdda7f00f79e91ee4269cf02b1bc6352d14e6685b93114131c7f6013c5d2ec9 |