使用 matplotlib.pyplot 时内核崩溃/内存不足

发布于 2025-01-20 19:52:19 字数 919 浏览 0 评论 0原文

我正在尝试使用 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.

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文