[Python3] Matplotlib.pyplot.plot图形符号、风格及颜色缩写速查表

本文提供了Matplotlib.pyplot.plot函数中图形符号、线条风格和颜色的简写形式速查表,包括Format Strings、Markers和Line Styles。未指定时,将采用默认设置:无符号实线,多条线会自动使用预设颜色。颜色可使用单字母代码进行指定。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Matplotlib.pyplot.plot图形符号、风格及颜色简写形式速查表

注:图形符号、风格及颜色均为plot函数的可选参数

  • 如不指定符号和线条风格,默认为无符号的实线
  • 如不指定颜色,Matplotlib会为多条线自动循环使用一组默认的颜色

Format Strings

A format string consists of a part for color, marker and line:

fmt = '[marker][line][color]'

Each of them is optional. If not provided, the value from the style cycle is used. Exception: If line is given, but no marker, the data will be a line without markers.

Other combinations such as [color][marker][line] are also supported, but note that their parsing may be ambiguous.

Markers 图形符号

characterdescription
‘.’point marker
‘,’pixel marker 像素点
‘o’circle marker
‘v’triangle_down marker
‘^’triangle_up marker
‘<’triangle_left marker
‘>’triangle_right marker
‘1’tri_down marker
‘2’tri_up marker
‘3’tri_left marker
‘4’tri_right marker
‘s’square marker
‘p’pentagon marker
‘*’star marker
‘h’hexagon1 marker
‘H’hexagon2 marker
‘+’plus marker
‘x’x marker
‘D’diamond marker
‘d’thin_diamond marker
‘|’vline marker
‘_’hline marker
# 示例(按表格从上至下顺序展示线条)
plt.plot(x, x + 0, '4', label='4')
plt.plot(x, x + 1, '3', label='3')
plt.plot(x, x + 2, '2', label='2')
plt.plot(x, x + 3, '1', label='1')
plt.plot(x, x + 4, '>', label='>')
plt.plot(x, x + 5, '<', label='<')
plt.plot(x, x + 6, '^', label='^')
plt.plot(x, x + 7, 'v', label='v')
plt.plot(x, x + 8, 'o', label='o')
plt.plot(x, x + 9, ',', label=',')
plt.plot(x, x + 10, '.', label='.')
plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)

在这里插入图片描述

# 示例
plt.plot(x, x + 0, '_', label='_')
plt.plot(x, x + 1, '|', label='|')
plt.plot(x, x + 2, 'd', label='d')
plt.plot(x, x + 3, 'D', label='D')
plt.plot(x, x + 4, 'x', label='x')
plt.plot(x, x + 5, '+', label='+')
plt.plot(x, x + 6, 'H', label='H')
plt.plot(x, x + 7, 'h', label='h')
plt.plot(x, x + 8, '*', label='*')
plt.plot(x, x + 9, 'p', label='p')
plt.plot(x, x + 10, 's', label='s')
plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)

在这里插入图片描述

Line Styles 线条风格

characterdescription
‘-’solid line style 实线
‘--’dashed line style 虚线
‘-.’dash-dot line style 点划线
‘:’dotted line style 实点线
# 示例
plt.plot(x, x + 0, linestyle='-') # 实线
plt.plot(x, x + 1, linestyle='--') # 虚线
plt.plot(x, x + 2, linestyle='-.') # 点划线
plt.plot(x, x + 3, linestyle=':') # 实点线

在这里插入图片描述

Example format strings:

# 示例
plt.plot(x, x + 0, 'b', label='b')		# blue markers with default shape
plt.plot(x, x + 1, 'or', label='or') 	# red circles
plt.plot(x, x + 2, '-g', label='-g') 	# green solid line
plt.plot(x, x + 3, '--', label='--') 	# dashed line with default color
plt.plot(x, x + 4, '^k:', label='^k:')  	# black triangle_up markers connected by a dotted line
plt.legend(loc='lower right')

在这里插入图片描述

Colors 颜色

The supported color abbreviations are the single letter codes

charactercolor
‘b’blue
‘g’green
‘r’red
‘c’cyan 青色
‘m’magenta 品红
‘y’yellow
‘k’black
‘w’white 白色

参考自:matplotlib.pyplot.plot - Matplotlib 3.2.1 documentation

### Matplotlib.pyplot 颜色缩写使用方法 在 `matplotlib.pyplot` 中,颜色可以多种方式进行指定。对于简洁性和快速绘图需求来说,最常用的还是通过单个字符来表示基本颜色[^3]。 | 缩写字母 | 对应颜色 | | --- | --- | | &#39;b&#39; | blue (蓝色) | | &#39;g&#39; | green (绿色) | | &#39;r&#39; | red (红色) | | &#39;c&#39; | cyan (青色) | | &#39;m&#39; | magenta (品红) | | &#39;y&#39; | yellow (黄色) | | &#39;k&#39; | black (黑色) | | &#39;w&#39; | white (白色) | 这些颜色可以在绘制图表时作为参数传递给各种绘图函数中的颜色选项(如 `plot()` 函数里的 `c` 参数)。下面是一个简单的例子展示了如何利用颜色缩写创建不同颜色的折线图: ```python import matplotlib.pyplot as plt import numpy as np # 创建数据集 x_values = np.linspace(0, 9, 10) y_values_blue = x_values * 2 y_values_green = x_values ** 2 # 绘制两条具有不同颜色的曲线 plt.plot(x_values, y_values_blue, c=&#39;b&#39;, label="Linear") # 使用&#39;b&#39;代表blue plt.plot(x_values, y_values_green, c=&#39;g&#39;, label="Quadratic") # 使用&#39;g&#39;代表green # 添加其他图形属性 plt.xlabel(&#39;X Axis&#39;) plt.ylabel(&#39;Y Axis&#39;) plt.title(&#39;Simple Line Plot with Color Abbreviations&#39;) plt.legend() # 显示图像 plt.show() ``` 此代码片段中,分别用 `&#39;b&#39;` 和 `&#39;g&#39;` 来指代蓝色和绿色,并应用于两个不同的数据序列上以区分它们之间的差异。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值