Multivariate normal distribution?

Hello, i’m new to Julia and have to plot a multivariate normal distribution. If i use MvNormal and try to plot it like plot(x_values,MvNormal) I get the Error Cannot convert FullNormal to series data for plotting stacktrace.
Can somebody tell me what i’m doing wrong ?

What do you want to plot? The pdf? What plotting package are you using?

Sorry i found out the topic is already solved.

Have a nice day.

Can you post a minimum working example? I.e. the complete sequence of code that triggers the error, including the initialization of all variables and the loading of packages.

Use backticks to format code blocks within discourse. Typing this text

```julia
function f(x, y)
    x + y
end
```

displays as

function f(x, y)
    x + y
end