معرفی شرکت ها


d3heatmap-0.2.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python package to create interactive heatmap based on d3js.
ویژگی مقدار
سیستم عامل -
نام فایل d3heatmap-0.2.3
نام d3heatmap
نسخه کتابخانه 0.2.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Erdogan Taskesen
ایمیل نویسنده erdogant@gmail.com
آدرس صفحه اصلی https://github.com/erdogant/d3heatmap
آدرس اینترنتی https://pypi.org/project/d3heatmap/
مجوز -
# d3heatmap [![Python](https://img.shields.io/pypi/pyversions/d3heatmap)](https://img.shields.io/pypi/pyversions/d3heatmap) [![PyPI Version](https://img.shields.io/pypi/v/d3heatmap)](https://pypi.org/project/d3heatmap/) [![License](https://img.shields.io/badge/license-BSD3-green.svg)](https://github.com/erdogant/d3heatmap/blob/master/LICENSE) [![Github Forks](https://img.shields.io/github/forks/erdogant/d3heatmap.svg)](https://github.com/erdogant/d3heatmap/network) [![GitHub Open Issues](https://img.shields.io/github/issues/erdogant/d3heatmap.svg)](https://github.com/erdogant/d3heatmap/issues) [![Project Status](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active) [![DOI](https://zenodo.org/badge/228166657.svg)](https://zenodo.org/badge/latestdoi/228166657) [![Downloads](https://pepy.tech/badge/d3heatmap)](https://pepy.tech/project/d3heatmap) [![Downloads](https://pepy.tech/badge/d3heatmap/month)](https://pepy.tech/project/d3heatmap) [![Sphinx](https://img.shields.io/badge/Sphinx-Docs-Green)](https://erdogant.github.io/d3heatmap/) [![Medium](https://img.shields.io/badge/Medium-Blog-green)](https://towardsdatascience.com/d3blocks-the-python-library-to-create-interactive-and-standalone-d3js-charts-3dda98ce97d4) <!---[![BuyMeCoffee](https://img.shields.io/badge/buymea-coffee-yellow.svg)](https://www.buymeacoffee.com/erdogant)--> <!---[![Coffee](https://img.shields.io/badge/coffee-black-grey.svg)](https://erdogant.github.io/donate/?currency=USD&amount=5)--> ``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: ```bash git clone https://github.com/erdogant/d3heatmap.git cd d3heatmap pip install -U . ``` #### Import d3heatmap ```python from d3heatmap import d3heatmap as d3 ``` #### Example 1: plot using the heatmap function ```python df = d3.import_example() # Create heatmap paths = results = d3.heatmap(df) ``` Klik on the figure for the interactive example. <p align="center"> <a href="https://erdogant.github.io/docs/d3heatmap/d3heatmap.html"> <img src="https://github.com/erdogant/d3heatmap/blob/master/docs/figs/example_1.png" width="600" /> </a> </p> #### Example 2: plot using the matrix function ```python df = d3.import_example(size=(6,20)) # Create heatmap paths = d3.matrix(df) ``` <p align="center"> <img src="https://github.com/erdogant/d3heatmap/blob/master/docs/figs/example_2.png" width="600" /> </p> #### Example 3: plot using the matrix function ```python # 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) ``` <p align="center"> <img src="https://github.com/erdogant/d3heatmap/blob/master/docs/figs/example_3.png" width="600" /> </p> #### Example 4: Matrix with parameters changed: ```python # 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) ``` <p align="center"> <img src="https://github.com/erdogant/d3heatmap/blob/master/docs/figs/example_4.png" width="600" /> </p> #### Example 4: Comparison heatmap vs matrix: There are quit some differences between the ``heatmap`` vs ``matrix`` functionality. ```python 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) ``` <p align="center"> <img src="https://github.com/erdogant/d3heatmap/blob/master/docs/figs/example_5.png" width="600" /> <img src="https://github.com/erdogant/d3heatmap/blob/master/docs/figs/example_6.png" width="500" /> </p> #### Citation Please cite d3heatmap in your publications if this is useful for your research. See right column for citation information. #### References * https://github.com/erdogant/d3heatmap * https://d3-graph-gallery.com * https://https://d3js.org/ ### Maintainer * Erdogan Taskesen, github: [erdogant](https://github.com/erdogant) * This work is created and maintained in my free time. 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. * Contributions are welcome. * Star it if you like it!


نیازمندی

مقدار نام
- ismember
- clusteval
- numpy
- pandas


زبان مورد نیاز

مقدار نام
>=3 Python


نحوه نصب


نصب پکیج whl d3heatmap-0.2.3:

    pip install d3heatmap-0.2.3.whl


نصب پکیج tar.gz d3heatmap-0.2.3:

    pip install d3heatmap-0.2.3.tar.gz