我正在绘制分组的熊猫数据框

score = pd.DataFrame()
score['Score'] = svm_score
score['Wafer_Slot'] = desc.Wafer_Slot[test_index].tolist()

gscore = score.groupby('Wafer_Slot')
score_plot = [score for ws, score in gscore]

ax = gscore.boxplot(subplots=False)
ax.set_xticklabels(range(52)) # does not work
plt.xlabel('Wafer Slot')
plt.show()


它运作良好,但是x轴无法读取,因为有许多数字重叠。我希望x轴是箱线图的计数器。

我怎样才能做到这一点?

最佳答案

boxplot方法不会像DataFrames和Series的plot方法那样返回轴对象。尝试这个:

gscore.boxplot(subplots=False)
ax = plt.gca()
ax.set_xticklabels(range(52))


根据外观,boxplot方法返回线对象的dictOrderedDictdicts

08-24 19:44