import matplotlib.pyplot as plt
plt.scatter(x, y1, label='true') # 设置图例名称 plt.scatter(x, y2, label='pred') # 设置图例名称 plt.xlabel('this is x-axis') # 设置x轴名称 plt.ylabel('thi is y-axis') # 设置y轴名称 plt.legend() # 显示图例
2024-01-13 14:11:34
import matplotlib.pyplot as plt
plt.scatter(x, y1, label='true') # 设置图例名称 plt.scatter(x, y2, label='pred') # 设置图例名称 plt.xlabel('this is x-axis') # 设置x轴名称 plt.ylabel('thi is y-axis') # 设置y轴名称 plt.legend() # 显示图例