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) in Julia I tried the following: fig = figure("plot") ax = fig[:add_subplot] ax[:contour](grid_x, grid_y, zz, linewidth=0.0) but is getting the following error: LoadError: KeyError: contour not found while loading In[57], in expression starting on line 3 Any help is appreciated. Thanks.