在绘制线时,可以使用两种类型的分组:线型和颜色。
linestyle='-'
或者缩写形式ls='-'
来指定。linestyle='--'
或者缩写形式ls='--'
来指定。linestyle=':'
或者缩写形式ls=':'
来指定。linestyle='-.'
或者缩写形式ls='-.'
来指定。以下是使用不同线型绘制线的示例代码:
import matplotlib.pyplot as plt
# 创建一个图形对象
fig, ax = plt.subplots()
# 绘制线
ax.plot([1, 2, 3, 4], [1, 4, 2, 3], linestyle='-', label='实线')
ax.plot([1, 2, 3, 4], [2, 3, 4, 1], linestyle='--', label='虚线')
ax.plot([1, 2, 3, 4], [4, 3, 2, 1], linestyle=':', label='点线')
ax.plot([1, 2, 3, 4], [3, 1, 4, 2], linestyle='-.', label='点划线')
# 添加图例
ax.legend()
# 显示图形
plt.show()
推荐的腾讯云相关产品和产品介绍链接地址:
以下是一些常用的颜色表示方式:
(1, 0, 0)
。#FF0000
。以下是使用不同颜色绘制线的示例代码:
import matplotlib.pyplot as plt
# 创建一个图形对象
fig, ax = plt.subplots()
# 绘制线
ax.plot([1, 2, 3, 4], [1, 4, 2, 3], color='red', label='红色')
ax.plot([1, 2, 3, 4], [2, 3, 4, 1], color='green', label='绿色')
ax.plot([1, 2, 3, 4], [4, 3, 2, 1], color='blue', label='蓝色')
ax.plot([1, 2, 3, 4], [3, 1, 4, 2], color='#FF00FF', label='紫色')
# 添加图例
ax.legend()
# 显示图形
plt.show()
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云