Python package to create interactive heatmap based on d3js.
Project description
d3heatmap
d3heatmap is a Python package to create interactive heatmaps based on d3js.
- The aim of d3heatmap is to create interactive heatmaps that can be used stand-alone and being visual attractive.
- This library does not require any additional installation of javascript, or downloads or setting paths to your systems environments. You just need python and pip install this library. There are two main functions to create a heatmap and there are some differences between the two. Read below for more details. Have fun!
Functionalities
d3heatmap.matrix
- Allows none symetric adjacency matrices.
- Colormap can be changed.
- No clustering.
- round-ish elements.
d3heatmap.heatmap
- Allows Clustering.
- Colormap is fixed.
- Advanced cluster coloring. Clusters are colored and within each cluster the color is incremental based on the value.
- Adjacency matrix must be symetric.
Star this repo if you like it! ⭐️
Installation
pip install d3heatmap
- Alternatively, install d3heatmap from the GitHub source:
git clone https://github.com/erdogant/d3heatmap.git
cd d3heatmap
pip install -U .
Import d3heatmap
from d3heatmap import d3heatmap as d3
Example 1: plot using the heatmap function
df = d3.import_example()
# Create heatmap
paths = results = d3.heatmap(df)
Klik on the figure for the interactive example.
Example 2: plot using the matrix function
df = d3.import_example(size=(6,20))
# Create heatmap
paths = d3.matrix(df)
Example 3: plot using the matrix function
# The dataframe contains more columns then rows. Adjust the size and color differently.
df = d3.import_example(size=(6,20))
# Create heatmap
paths = d3.matrix(df, fontsize=10, title='Hooray!', description='d3 matrix is created using https://github.com/erdogant/d3heatmap.', path='c:/temp/example/d3_matrix.html', width=600, height=300, cmap='interpolateGreens', vmin=1)
Example 4: Matrix with parameters changed:
# The dataframe contains more columns then rows. Adjust the size and color differently.
df = d3.import_example(size=(6,20))
# Create heatmap
paths = d3.matrix(df, fontsize=10, title='Hooray!', description='d3 matrix is created using https://github.com/erdogant/d3heatmap.', path='c:/temp/example/d3_matrix.html', width=600, height=300, cmap='interpolateGreens', vmin=1)
Example 4: Comparison heatmap vs matrix:
There are quit some differences between the heatmap vs matrix functionality.
df = d3.import_example()
results = d3.heatmap(df, title='d3heatmap with the heatmap function.', path='heatmap.html')
results = d3.matrix(df, title='d3heatmap with the matrix function.', cmap='interpolatePRGn', path='matrix.html', width=700, height=700)
Citation
Please cite d3heatmap in your publications if this is useful for your research. See right column for citation information.
References
Maintainer
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file d3heatmap-0.2.3.tar.gz.
File metadata
- Download URL: d3heatmap-0.2.3.tar.gz
- Upload date:
- Size: 238.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d5e1b1840120afec7ebf0df4e121a1caac5ae26669ddefa8a9eaa6181e036c8
|
|
| MD5 |
84a16edb9a5ef23454b62411ea69d9b3
|
|
| BLAKE2b-256 |
6c8b39ef44a5f637916680596fa073103f3ebd29647059417b9fb49f0b080da7
|
File details
Details for the file d3heatmap-0.2.3-py3-none-any.whl.
File metadata
- Download URL: d3heatmap-0.2.3-py3-none-any.whl
- Upload date:
- Size: 240.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2911f3d53d6b7f43dadf80404b2f6c30f600081c47023c5885c42495f32f5892
|
|
| MD5 |
d906224c7f3e6906a88761223e9c1818
|
|
| BLAKE2b-256 |
3d53270b468abb6a4b1c1d46c1458c4566d090d999e8c045042aebbdfea94df3
|