网络编程
位置:首页>> 网络编程>> Python编程>> Python matplotlib通过plt.scatter画空心圆标记出特定的点方法

Python matplotlib通过plt.scatter画空心圆标记出特定的点方法

作者:Alan-Guo  发布时间:2023-06-26 14:19:03 

标签:Python,matplotlib,plt.scatter

在用python画散点图的时候想标记出特定的点,比如在某些点的外围加个空心圆,一样可以通过plt.scatter实现


import matplotlib.pyplot as plt

x = [[1, 3], [2, 5]]
y = [[4, 7], [6, 3]]

for i in range(len(x)):

plt.plot(x[i], y[i], color='r')
 plt.scatter(x[i], y[i], color='b')
 plt.scatter(x[i], y[i], color='', marker='o', edgecolors='g', s=200) # 把 corlor 设置为空,通过edgecolors来控制颜色

效果图

Python matplotlib通过plt.scatter画空心圆标记出特定的点方法

来源:https://blog.csdn.net/AlanGuoo/article/details/79184267

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com