On Thursday, December 17, 2015 at 1:11:50 AM UTC-5, Lex wrote:
>
> 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)
>
>
contourf(xx, yy, Z, cmap=get_cmap("Spectral"), alpha=0.8) (In PyPlot, most of the matplotlib.pyplot functions are simply exported into the global namespace if you do "using PyPlot", in Julia style.)
