Filled contour plots in Plots.jl without contour lines and smooth interpolation (GR backend)

Isn’t this the functionality of a heatmap?

using GR
z = peaks(200)
contourf(z)
heatmap(z)

3 Likes