在用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
这里给大家分享的是一个学习canvas的时候做的画空心圆与实心圆的练习题,非常简单。
复制代码代码如下: var canvas=document.getElementById(“canvas”); var cxt=canvas.getContext(“2d”); //画一个空心圆 cxt.beginPath(); cxt.arc(200,200,50,0,360,false);