Last updated:
0 purchases
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.