pandas绘图

Posted 棍子哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas绘图相关的知识,希望对你有一定的参考价值。

#encoding:utf8
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
df = pd.DataFrame(np.random.randn(10,4),index=pd.date_range(\'2018/12/18\',
   periods=10), columns=list(\'ABCD\'))
plt.figure()
df.plot()
df = pd.DataFrame(3 * np.random.rand(4), index=[\'a\', \'b\', \'c\', \'d\'], columns=[\'x\'])
df.plot.pie(subplots=True)
plt.show()
#或者
#encoding:utf8
import pandas as pd
import numpy as np
from pylab import *
df = pd.DataFrame(np.random.randn(10,4),index=pd.date_range(\'2018/12/18\',
   periods=10), columns=list(\'ABCD\'))
df.plot()
df = pd.DataFrame(3 * np.random.rand(4), index=[\'a\', \'b\', \'c\', \'d\'], columns=[\'x\'])
df.plot.pie(subplots=True)
show()

 

 

以上是关于pandas绘图的主要内容,如果未能解决你的问题,请参考以下文章

pandas - 多索引绘图

使用 pandas 绘图时,图例仅显示一个标签

在 pandas 中使用 groupby 命令后使用 seaborn 进行绘图

pandas boxplot 包含之前保存的绘图内容

为pandas绘图功能制作tex兼容的名称

Pandas内置绘图大全