Updating a plot in python’s matplotlib
我正在尝试在 matplotlib 中绘制流数据。我可以使用交互模式和
C://Conda//lib//site-packages//matplotlib//backend_bases.py:2437:
MatplotlibDeprecationWarning: Using default event loop until function specific to
this GUI is implemented
warnings.warn(str, mplDeprecation)
这是代码:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 10, 0.1) plt.ion() #interactive mode on for i in np.arange(100): |
谁能告诉我为什么会崩溃而不是退出循环?我正在使用 Python 3 在 Jupyter 中执行此操作。当然,如果有更好的方法来执行此操作,我很想听听。谢谢!
这段代码改编自 How to update a plot in matplotlib?
也许您想在末尾添加
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267951.html