I am plotting a scatter plot of price of houses w.r.t latitude and longitude. I want to reverse the palette so that the red color depicts the most expensive house.
plt.figure(figsize=(12,8))
sns.scatterplot(x='long' ,y='lat' ,data=non_top_1_perc ,hue='price' ,edgecolor=None ,
alpha=0.2,palette='RdYlGn' )