python Matplotlib 颜色、标记、线型
程序员文章站
2022-03-21 10:32:35
...
python Matplotlib 颜色、标记、线型
ax.plot(x, y, ‘r–’)
等价于 ax.plot(x, y, linestyle=‘–’, color=‘r’)
示例代码:
import matplotlib.pyplot as plt
import numpy as np
fig, axes = plt.subplots(2)
axes[0].plot(np.random.randint(0, 100, 50), 'ro--')
# 等价
axes[1].plot(np.random.randint(0, 100, 50), color='r', linestyle='dashed', marker='o')
常用的颜色、标记、线型:<>
marker
. point
, pixel
o circle
v 下三角形
^ 上三角形
< 左三角形
color
b:blue
g:green
r:red
c:cyan
m:magenta
y:yellow
k:black
w:white
linestyle
- or solid 粗线
-- or dashed dashed line
-. or dashdot dash-dotted
: or dotted dotted line
'None' draw nothing
' ' or '' 什么也不绘画
喜欢就点赞评论+关注吧
感谢阅读,希望能帮助到大家,谢谢大家的支持!
上一篇: 颜色填充
下一篇: Go语言生成随机数的方法
推荐阅读
-
python中matplotlib的颜色及线条控制的示例
-
python中matplotlib条件背景颜色的实现
-
Python matplotlib通过plt.scatter画空心圆标记出特定的点方法
-
Matplotlib--python文字、绘图、背景(颜色对照表)
-
python中matplotlib的颜色及线条控制
-
Python+matplotlib绘制不同大小和颜色散点图实例
-
matplotlib设置颜色、标记、线条,让你的图像更加丰富(推荐)
-
Python Matplotlib绘制渐变色柱状图(bar)并加边框和配置渐变颜色条(colorbar)
-
Python matplotlib 绘制3D柱形图, 并修改颜色
-
python中matplotlib的颜色及线条控制的示例