Doesn’t look like there are any shortcuts for it in StatsPlots.
You can just get the pdf values on a grid and do a surface plot though.
Z = [pdf(mvnorm,[i,j]) for i in 0:100, j in 0:100]
plot(0:100,0:100,Z,st=:surface)
Doesn’t look like there are any shortcuts for it in StatsPlots.
You can just get the pdf values on a grid and do a surface plot though.
Z = [pdf(mvnorm,[i,j]) for i in 0:100, j in 0:100]
plot(0:100,0:100,Z,st=:surface)