我正在绘制分组的熊猫数据框
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
方法返回线对象的dict
或OrderedDict
的dicts
。