Metadata-Version: 1.1
Name: bkheatmap
Version: 0.1.5
Summary: A Bokeh heatmap for Python
Home-page: https://github.com/wwliao/bkheatmap
Author: Wen-Wei Liao
Author-email: gattacaliao@gmail.com
License: GPLv3
Description: .. image:: https://img.shields.io/badge/python-2.7-blue.svg
        
        .. image:: https://img.shields.io/badge/license-GPLv3-green.svg
        
        Interactive Heatmap for Python
        ==============================
        
        bkheatmap is a Python module based on Bokeh_ to let you plot the 
        interactive heatmaps much easier!
        
        .. _Bokeh: http://bokeh.pydata.org/
        
        Installation
        ------------
        
        .. code-block:: bash
        
           $ pip install bkheatmap
        
        Usage
        -----
        
        Please download mtcars.txt_ and run bkheatmap as follows:
        
        .. _mtcars.txt: https://gist.githubusercontent.com/wwliao/9ee916c1c0295b2f570e239bc91581b3/raw/a961160be56810cb0a461d86d3a04012a89a713f/mtcars.txt
        
        Use as a module in the Python script
        
        .. code-block:: python
        
           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
        
        .. code-block:: bash
        
           $ bkheatmap --scale column mtcars.txt
        
        Then a HTML file will be generated like this_.
        
        .. _this: http://wwliao.name/downloads/mtcars.bkheatmap.html
        
        
Keywords: Bokeh heatmap
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Scientific/Engineering :: Visualization
