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 Colab 中使用 pm.traceplot(mcmc_trace,['theta']) 进行绘图,但出现错误:
ImportError:未安装 ArviZ。为了使用plot_trace:
plot_trace
注意:如果由于缺少包而导致导入失败,您可以使用 !pip 或 !apt 手动安装依赖项。
而我已经安装了 Arviz 并导入了可以工作但无法绘图的 arviz。
在 Google ColLab 上通过 pip 安装将使 ArviZ 的绘图再次运行。
!pip install pymc3[plots] -q