My goal is to highlight one specific point on a heatmap.
My attempt to achieve this using heatmap
+ scatter!
does not show the values properly.
using Plots
XX, YY = 1:100,1:100
ZZ = [x*y for x in XX, y in YY]
heatmap(XX,YY, ZZ, xlabel="x", ylabel="y")
scatter!([10],[10],[7000], legend=false)
Any hint how to achieve this?
Thanks!