I want to plot empty the circles in y vs x plot and I found a nice answer here I wanted to ask if I can set an edge color according to these values of a third array. I modified this code as follows, but as required, I can only pass color and values to the edge color:
import matplotlib.pyplot as plt
import numpy as np
x = np.random.randn(60)
y = np.random.randn(60)
z = np.random.randn(60)
plt.scatter(x, y, s=80, facecolors='none', edgecolors=z)