Matplotlib实例教程 | 统计DataFrame中文本长度分布(条形统计图)

Posted K同学啊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Matplotlib实例教程 | 统计DataFrame中文本长度分布(条形统计图)相关的知识,希望对你有一定的参考价值。


df_raw['length'] = df_raw['text'].apply(lambda x: len(x))

len_df      = df_raw.groupby('length').count()
sent_length = len_df.index.tolist()
sent_freq   = len_df['text'].tolist()

# 绘制句子长度及出现频数统计图
plt.bar(sent_length, sent_freq, color="lightgreen")
plt.title("句子长度及出现频数统计图")
plt.xlabel("句子长度")
plt.ylabel("句子长度出现的频数")
plt.savefig('2.jpg')
plt.show()


可参考实例:

以上是关于Matplotlib实例教程 | 统计DataFrame中文本长度分布(条形统计图)的主要内容,如果未能解决你的问题,请参考以下文章

Matplotlib实例教程 | 统计DataFrame中数据分布情况(条形统计图)

Matplotlib实例教程饼状图

Matplotlib实例教程折线图

Matplotlib实例教程:柱状图

Matplotlib实例教程热力图

Matplotlib实例教程密度图