对于pymc3的命令pm.plot_posterior

For the command pm.plot_posterior of pymc3

通常,我发现我们使用pm.binomial()等等。并使用 pm.plot_posterior 我们得到离散图,我的问题是为什么我必须得到的图是一条曲线?有没有人能赐教一下?

我想得到:

但我得到了图表:

kind 参数接受 "kde"(连续的默认值)或 "hist"

import arviz as az

az.plot_posterior(trace, kind="hist")

请参阅the documentation