如何在 Python 中排列 x 轴标签
Posted
技术标签:
【中文标题】如何在 Python 中排列 x 轴标签【英文标题】:How to arrange the x axis label in Python 【发布时间】:2020-04-10 02:58:46 【问题描述】:我已经用python尝试了以下代码
df1= df.groupby(['FCR','PRIORITY']) ['FCR'].count()
df1.plot(kind='bar' , figsize = (15,7) )
但我没有得到想要的输出,如下图所示
【问题讨论】:
请始终提供一个小的可重现示例。 ***.com/help/minimal-reproducible-example 【参考方案1】:使用plt.xlabel("...", weight = '..', size = '...')
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.xlabel.html
【讨论】:
或者你有这种问题***.com/questions/42762486/…?以上是关于如何在 Python 中排列 x 轴标签的主要内容,如果未能解决你的问题,请参考以下文章
Python,x轴标题与matplotlib中的刻度标签重叠