I have a data frame from pandas like:
In the row of values it's possible to find numers from 0 to 400. My idea would be to create a heatmap from this dataframe over an image. This values of the dataframe are different pixels variations from the same photo. Is this possible?
I have tried using:
print(sns.heatmap(df))
Being df the data frame.
I can't get the heatmap, so I didn't tried to plasm it into an image. Thanks!!

