如何使用Matplotlib绘制两条虚线和设置标记?
在本程序中,我们将使用matplot库绘制两条线。在开始编写代码之前,我们需要首先使用以下命令导入matplotlib库 -
Import matplotlib.pyplot as plt
Pyplot是一个命令样式函数集合,使matplotlib像MATLAB一样工作。
算法
Step 1: Import matplotlib.pyplot Step 2: Define line1 and line2 points. Step 3: Plot the lines using the plot() function in pyplot. Step 4: Define the title, X-axis, Y-axis. Step 5: Display the plots using the show() function.
示例代码
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是我们线上的坐标。绘图函数中的linewidth参数基本上是我们正在绘制的线框的宽度/粗细度。程序中的plt.legend()函数用于在图表上放置图例,如x轴、y轴名称。
广告