没有使用 pandas 在 plot() 函数中获取图表中的标签 [重复]

Posted

技术标签:

【中文标题】没有使用 pandas 在 plot() 函数中获取图表中的标签 [重复]【英文标题】:Not getting labels in graph in plot() function using pandas [duplicate] 【发布时间】:2018-12-17 07:22:09 【问题描述】:

我尝试在 pandas 中使用 plot() 函数绘制图形:

fd.plot(x= 'values', y='locations', title='Evoqua', kind='hist', figsize=(6,6))

但无法获取 x 和 y 轴上的标签?

【问题讨论】:

【参考方案1】:

DataFrame.plot() 方法返回一个matplotlib.axes.AxesSubplot 对象,因此您可以像在matplotlib 中那样为其添加标签:

ax = fd.plot(x='values', y='locations', title='Evoqua', kind='hist', figsize=(6, 6))

ax.set_xlabel("x label")
ax.set_ylabel("y label")

【讨论】:

以上是关于没有使用 pandas 在 plot() 函数中获取图表中的标签 [重复]的主要内容,如果未能解决你的问题,请参考以下文章

pandas散点图-plot.scatter

pandas.DataFrame.plot 图例中文乱码怎么破

pandas.DataFrame.plot( )参数详解

pandas中的绘图函数

如何增加 pandas.DataFrame.plot 的图像大小

matplotlib plot参数