All Projects → schlegelp → catheat

schlegelp / catheat

Licence: GPL-3.0 license
Plot categorical heatmaps with seaborn

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to catheat

heatmaps
Better heatmaps in Python
Stars: ✭ 117 (+588.24%)
Mutual labels:  heatmap, seaborn
monthly-returns-heatmap
Python Monthly Returns Heatmap (DEPRECATED! Use QuantStats instead)
Stars: ✭ 23 (+35.29%)
Mutual labels:  heatmap, seaborn
Machine-Learning-with-Iris-Dataset
Data Visualization and Machine Learning with Iris Dataset.
Stars: ✭ 65 (+282.35%)
Mutual labels:  seaborn
visual-heatmap
Open source javascript module for high performance, large scale heatmap rendering.
Stars: ✭ 21 (+23.53%)
Mutual labels:  heatmap
python-wifi-survey-heatmap
A Python application for Linux machines to perform WiFi site surveys and present the results as a heatmap overlayed on a floorplan
Stars: ✭ 231 (+1258.82%)
Mutual labels:  heatmap
Github-Stars-Predictor
It's a github repo star predictor that tries to predict the stars of any github repository having greater than 100 stars.
Stars: ✭ 34 (+100%)
Mutual labels:  seaborn
covid-19
Data ETL & Analysis on the global and Mexican datasets of the COVID-19 pandemic.
Stars: ✭ 14 (-17.65%)
Mutual labels:  seaborn
OffsetGuided
Code for "Greedy Offset-Guided Keypoint Grouping for Human Pose Estimation"
Stars: ✭ 31 (+82.35%)
Mutual labels:  heatmap
simple-d3-heatmap
A javascript module to create heatmap calendars
Stars: ✭ 24 (+41.18%)
Mutual labels:  heatmap
tapmap
Command line keyboard heatmap generator.
Stars: ✭ 19 (+11.76%)
Mutual labels:  heatmap
flutter heatmap calendar
A Heatmap Calendar based on Github's contributions chart
Stars: ✭ 47 (+176.47%)
Mutual labels:  heatmap
PUBG-heatmap-frontend
An analytic tool for PUBG! Heatmap and 2d replay of the pubg games
Stars: ✭ 18 (+5.88%)
Mutual labels:  heatmap
MobilePose
Light-weight Single Person Pose Estimator
Stars: ✭ 588 (+3358.82%)
Mutual labels:  heatmap
datascienv
datascienv is package that helps you to setup your environment in single line of code with all dependency and it is also include pyforest that provide single line of import all required ml libraries
Stars: ✭ 53 (+211.76%)
Mutual labels:  seaborn
PTXQC
A Quality Control (QC) pipeline for Proteomics (PTX) results generated by MaxQuant
Stars: ✭ 34 (+100%)
Mutual labels:  heatmap
morpheus.js
JavaScript matrix visualization and analysis
Stars: ✭ 51 (+200%)
Mutual labels:  heatmap
dc-plugins
基于DC-SDK开发的插件库,包含动画、效果、天气、材质、热区图层、聚合图层🌎
Stars: ✭ 40 (+135.29%)
Mutual labels:  heatmap
Udacity-Data-Analyst-Nanodegree
Repository for the projects needed to complete the Data Analyst Nanodegree.
Stars: ✭ 31 (+82.35%)
Mutual labels:  seaborn
Python-Data-Visualization
D-Lab's 3 hour introduction to data visualization with Python. Learn how to create histograms, bar plots, box plots, scatter plots, compound figures, and more, using matplotlib and seaborn.
Stars: ✭ 42 (+147.06%)
Mutual labels:  seaborn
reactjs-calendar-heatmap
React component for d3.js calendar heatmap graph
Stars: ✭ 128 (+652.94%)
Mutual labels:  heatmap

catheat

Wrapper for seaborn to plot categorical heatmaps. Tested with seaborn version 0.8.1.

Installation

I recommend using Python Packaging Index (PIP) to install. First, get PIP and then run in terminal:

pip install git+git://github.com/schlegelp/catheat@master

This command should also work to update the package.

If your default distribution is Python 2, you have to explicitly tell PIP to install for Python 3:

pip3 install git+git://github.com/schlegelp/catheat@master

If you are behind a firewall try:

pip install git+https://github.com/schlegelp/catheat@master

Dependencies:

Quickstart:

Plot a simple categorical heatmap

import catheat
import seaborn as sns

# Get an example dataset from seaborn
tips = sns.load_dataset('tips')

# Plot the categorical columns as heatmap
ax = catheat.heatmap(tips[['sex','smoker','day','time','size']],
                     palette='Paired')

plt.show()

License:

This code is under GNU GPL V3

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].