Heat Table in Python

874 views Asked by At

I have a python function that returns a list of summary statistics for a particular argument. I'd like to create a 'heat table' of the values returned for several arguments where each cell's color is weighted according to deviations from the mean of the value across all arguments. I don't know if 'heat table' is the proper name for what I'm looking for, but it's not a heat-map per se.

Below is an example of what I'm trying to implement. Note that the color of a cell displays the value and is color-weighted according to its value relative to those within the same column.

heat table

0

There are 0 answers