在 Ubuntu 中显示 Matplotlib 图形(和其他 GUI)
使用 matplotlib 的绘图方法并使用不同的颜色设置图例。
步骤
使用 plt.xlabel() 方法设置 X 轴标签。
使用 plt.ylabel() 方法设置 Y 轴标签。
使用 [9, 5]、[2, 5] 和 [4, 7, 8] 数组,使用 plt.plot() 方法绘制线条。
初始化两个变量;location = 0 表示最佳位置,border_drawn_flag = True(True,如果要为图例绘制边框。False,如果不绘制边框)。
对图例使用 plt.legend() 方法,并相应设置 location 和 border_drawn_flag,以在图表中获得完美的图例。
使用 plt.show() 方法显示图形。
示例
import matplotlib.pyplot as plt plt.ylabel("Y-axis ") plt.xlabel("X-axis ") plt.plot([9, 5], [2, 5], [4, 7, 8]) location = 0 # For the best location legend_drawn_flag = True plt.legend(["blue", "orange"], loc=0, frameon=legend_drawn_flag) plt.show()
输出
广告