This is my Table:
I can customize a column like so:
cm = sns.light_palette("green", as_cmap=True)
col1 = col1.dropna()
col1.style.background_gradient(cmap=cm)
which results in:
I would like to color the cells according to their value, for example: In the Green value column, the RED and BLUE (RGB) values are 0 and I would like to have it colored according to the color scale of green (as well for the Hue column from the HSV scale). Is there a way to do it?
Do you have any recommendation on which scale to use in order to visualize a temperature column?
Thanks a lot!