I have a seaborn heatmap plot like this:
With source code:
temp_cmap = ["#0416FF", "#0094FF", "#00DAFF", "#006600", "#00A305", "#71E507", "#DBF400", "#FFD602",
"#FF9B0F", "#FF1E01"]
sns.heatmap(df_grid, annot=False, cmap=temp_cmap, ax=self.axes_surface, cbar_ax=self.cbar_ax_1,
vmin=min_data,
vmax=max_data
)
But I want smooth this plot like this:
How can I do that?