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.
在 Google 的 colaboratory 中,安装了 arviz 然后确实 import arviz 没有错误,但在代码单元中, pm.plot_posterior(samples) 得到错误:未安装 arviz。
试图绘制贝叶斯代码
pm.plot_posterior(samples)
我期待一个情节
在导入 PyMC3 之前安装 Arviz,否则它显然找不到它。在您的情况下,只需重新启动运行时(Runtime > Restart runtime...)即可使其正常工作。
嗨,你试过添加细胞魔法%matplotlib inline吗?这可能是 jupyter-notebook 不“知道”内嵌绘图的问题
%matplotlib inline