我目前正在尝试开发一个方便的函数,它应该为熊猫数据框中的每一列创建一个基本图,其中包含数据框中所有列的数据集中的值及其数量。
def plot_value_counts(df, leave_out):
# is supposed to create the subplots grid where I can add the plots
fig, axs = plt.subplots(int(len(df)/2) + 1,int(len(df)/2) + 1)
for idx, name in enumerate(list(df)):
if name == leave_out:
continue
else:
axs[idx] = df[name].value_counts().plot(kind="bar")
return fig, axs
这个片段永远运行,永不停止。我尝试查看有关 stackoverflow 的其他类似问题,但找不到任何针对我的案例的特定问题。
凤凰求蛊
呼唤远方
相关分类