Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

For the command pm.plot_posterior of pymc3

Writer Andrew Mclaughlin

Usually, I find we use the pm.binomial() and so forth. and using the pm.plot_posterior we get the Discrete graph, my question is why my graph I have to get is a curve? Could someone enlighten me?

I want to get:

enter image description here

But I get the graph:

enter image description here

1 Answer

The kind argument accepts either "kde" (default for continuous) or "hist".

import arviz as az
az.plot_posterior(trace, kind="hist")

Please see the documentation.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.