使用 matplotlib.pyplot 时内核崩溃/内存不足
我正在尝试使用 matplotlib.pyplot 绘制我的数据框。我总共绘制了 5k 个图,并且内核在中途死亡。
您可以使用此代码生成这个简单的数据框:
import pandas as pd
import numpy as np
df=pd.DataFrame()
countries = ['Argentina', 'Brazil', 'Chile', 'China', 'Colombia', 'Czech Republic', 'Egypt', 'Greece', 'United Arab Emirates']
for c in countries:
df=df.append(pd.DataFrame({'date':pd.date_range(start='2001-01-01',end='2021-12-31',freq='B'),'country':c}))
df['value'] = np.random.randint(0,100,len(df))
df
接下来,我尝试绘制每个特定日期的值和国家/地区。
for d in list(df.date.unique()): # For each unique date, make a plot
ax=(df.loc[df.date==d,['country','value']].set_index('country').sort_values('value')
.plot())
print(f'{d} done.')
del ax
我该如何解决这个问题?
I'm trying to plot my dataframe using matplotlib.pyplot. I'm plotting a total of 5k plots and midway the kernel dies.
You can use this code to generate this simple dataframe:
import pandas as pd
import numpy as np
df=pd.DataFrame()
countries = ['Argentina', 'Brazil', 'Chile', 'China', 'Colombia', 'Czech Republic', 'Egypt', 'Greece', 'United Arab Emirates']
for c in countries:
df=df.append(pd.DataFrame({'date':pd.date_range(start='2001-01-01',end='2021-12-31',freq='B'),'country':c}))
df['value'] = np.random.randint(0,100,len(df))
df
Next, I'm trying to plot the value and country for each particular date.
for d in list(df.date.unique()): # For each unique date, make a plot
ax=(df.loc[df.date==d,['country','value']].set_index('country').sort_values('value')
.plot())
print(f'{d} done.')
del ax
How can I resolve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论