I have a DataFrame that resembles the following:
Name V1 V2 V3
A 1 0 0
B 1 0 1
C 1 1 0
etc.
I would like to visualize it as a 2-d matrix with labeled rows and columns and with cells colored based on whether the value is 1 or 0.
In other words, I would like to do something like this: Conditional coloring of a binary data frame in R
but in Python.
Any help is appreciated!

