plt.contourf(xx, yy, Z, cmap=plt.cm.Spectral, alpha=0.8)
fig = figure("plot")ax = fig[:add_subplot]ax[:contour](grid_x, grid_y, zz, linewidth=0.0)
LoadError: KeyError: contour not foundwhile loading In[57], in expression starting on line 3
Hello,What is the correct way to create contour plot using PyPlot.jl? .. like in Python we have,plt.contourf(xx, yy, Z, cmap=plt.cm.Spectral, alpha=0.8)