如何使用 Matplotlib 绘制两条虚线并设置标记?

pythonmatplotlibserver side programmingprogramming

在此程序中,我们将使用 matplot 库绘制两条线。在开始编码之前,我们需要首先使用以下命令导入 matplotlib 库 −

将 matplotlib.pyplot 导入为 plt

Pyplot 是命令样式函数的集合,使 matplotlib 像 MATLAB 一样工作。

算法

步骤 1:导入 matplotlib.pyplot
步骤 2:定义 line1 和 line2 点。
步骤 3:使用 pyplot 中的 plot() 函数绘制线条。
步骤 4:定义标题、X 轴、Y 轴。
步骤 5:使用 show() 函数显示图表。

示例代码

import matplotlib.pyplot as plt

line1_x = [10,20,30]
line1_y = [20,40,10]

line2_x = [10,20,30]
line2_y= [40,10,30]

plt.xlabel('X AXIS')
plt.ylabel('Y AXIS')

plt.plot(line1_x ,line1_y , color='blue', linewidth = 3, label = 'line1-dotted',linestyle='dotted')
plt.plot(line2_x ,line2_y, color='red', linewidth = 5, label = 'line2-dashed', linestyle='dotted')

plt.title("PLOTTING DOTTED LINES")
plt.legend()

plt.show()

输出

解释

变量 line1_x、line_y 和 line2_x、line2_y 是我们的线的坐标。plot 函数中的 linewidth 参数基本上是我们正在绘制的线的宽度/厚度。程序中的plt.legend()函数用于在图形上放置x轴、y轴名称等图例。


相关文章