如何在 Matplotlib 中设置线颜色为橙色,并指定线条标记?
要在 Matplotlib 中将线条颜色设置为橙色并指定线条标记,我们可以采取以下步骤 −
步骤
设置图形大小并调整子图之间和周围的边距。
使用 numpy 创建x和y数据点。
使用属性color='orange'和marker='*'绘制x和y数据点。
要显示图形,请使用show()方法。
示例
import matplotlib.pyplot as plt import numpy as np # Set the figure size plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True # x and y data points x = np.linspace(-5, 5, 100) y = np.sin(x) # Plot the data points with color and marker attributes plt.plot(x, y, color='orange', marker="*") # Display the plot plt.show()
输出
将产生以下输出 −
广告