Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常,我发现我们使用了pm.binomial()等等。并使用 pm.plot_posterior 我们得到离散图,我的问题是为什么我必须得到的图是曲线?有人可以启发我吗?
pm.binomial()
我想得到:
但我得到了图表:
kind参数接受("kde"默认为连续)或"hist".
kind
"kde"
"hist"
import arviz as az az.plot_posterior(trace, kind="hist")
请参阅文档。