欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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 '' 什么也不绘画

喜欢就点赞评论+关注吧

python Matplotlib 颜色、标记、线型

感谢阅读,希望能帮助到大家,谢谢大家的支持!