实现二维平面上散点的绘制,并可以给每个散点标记序号或者名称:
1
2
3
4
5
6
7
8
9
10
11
12
|
import numpy as np import matplotlib.pyplot as plt x = [ 2.3 , 4.5 , 3 , 7 , 6.5 , 4 , 5.3 ] y = [ 5 , 4 , 7 , 5 , 5.3 , 5.5 , 6.2 ] n = np.arange( 7 ) fig,ax = plt.subplots() ax.scatter(x,y,c = 'r' ) for i,txt in enumerate (n): ax.annotate(txt,(x[i],y[i])) |
以上这篇python绘制散点图并标记序号的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_40198632/article/details/78455886