我正在Python中设置一个过滤工具。我想根据其他数据来绘制一些数据,但是我的散点图遇到了问题。实际上,仅显示数据,而不显示图形标题,x轴标签或y轴标签。 有人可以解释我的错误吗? 预先谢谢你。
x_text = str(self.comboBox1.currentText())
y_text = str(self.comboBox2.currentText())
x_data = self.data.getData(x_text)
y_data = self.data.getData(y_text)
if x_data is not None and y_data is not None :
if x_text =="Cycles":
fig, ax = plt.subplots()
ax = plt.subplot(111, facecolor= "lightgrey")
for x,y in zip(x_data, y_data):
if isinstance(y, list):
ax.scatter([x]*len(y),y,marker = 'o',color="chocolate")
else:
ax.scatter(x,y,marker = 'o', color="teal")
ax.set_title("Before filtering")
#ax.set_xlabel(x_text)
#ax.set_ylabel(y_text)
ax.grid(True)
fig.text(0.03,0.5 ,y_text, va='center', rotation = 'vertical', fontsize=12) #va : vertical alignement
fig.text(0.5 ,0.03,x_text, ha='center', fontsize=12)
plt.show()