bkheatmap 0.1.5

Creator: coderz1093

Last updated:

Add to Cart

Description:

bkheatmap 0.1.5

Interactive Heatmap for Python
bkheatmap is a Python module based on Bokeh to let you plot the
interactive heatmaps much easier!

Installation
$ pip install bkheatmap


Usage
Please download mtcars.txt and run bkheatmap as follows:
Use as a module in the Python script
import os
import pandas as pd
from bkheatmap import bkheatmap

infile = "mtcars.txt"
prefix = os.path.splitext(infile)[0]

df = pd.read_table(infile, index_col=0)
bkheatmap(df, prefix=prefix, scale="column")
Or use as a command in the shell
$ bkheatmap --scale column mtcars.txt
Then a HTML file will be generated like this.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.