地块中的标签

时间:2014-01-15 22:25:07

标签: matplotlib pandas

我在向图例添加标签时遇到了一些问题。由于某种原因,matplotlib忽略了我在数据帧中创建的标签。有什么帮助吗?

熊猫版:0.13.0
matplotlib版本:1.3.1

import pandas as pd
%matplotlib inline
import matplotlib.pyplot as plt

# Sample dataframe
d = {'date': [pd.to_datetime('1/1/2013'), pd.to_datetime('1/1/2014'), pd.to_datetime('1/1/2015')],
     'number': [1,2,3],
     'letter': ['A','B','C']}
df = pd.DataFrame(d)

####################
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(13, 10))
fig.subplots_adjust(hspace=2.0) ## Create space between plots

# Chart 1
df.plot(ax=axes[0], label='one')

# Chart 2
df.set_index('date')['number'].plot(ax=axes[1], label='two')

# add a little sugar
axes[0].set_title('This is the title')
axes[0].set_ylabel('the y axis')
axes[0].set_xlabel('the x axis')
axes[0].legend(loc='best')
axes[1].legend(loc='best');

问题是图表1将图例作为“数字”返回,我希望它说“一”。

1 个答案:

答案 0 :(得分:1)

将为第一轴说明这一点。你可以重复第二次。

In [72]: fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(13, 10))

获取对轴的引用

In [73]: ax=df.plot(ax=axes[0])

获取传奇

In [74]: legend = ax.get_legend()

获取图例

的文字
In [75]: text = legend.get_texts()[0]

打印图例的当前文本

In [77]: text.get_text()
Out[77]: u'number'

设置所需的文字

In [78]: text.set_text("one")

绘图更新

In [79]: plt.draw()

下图显示了第一个轴的已更改图例。您可以对另一个轴执行相同的操作。

注意:IPython自动完成功能帮助我找到了答案!

enter image description here