I am trying to create a scatter plot using matplotlib where each point has a specific color value.
I scale the values and then apply alpha blending between a \'left\'
Convert colors to a float array with 0 <= colors <= 1 and it should work fine.
sc.scatter(np.arange(len(values)), values, c = colors/255)