I have a similar data to this:
values = (1,1,2,2,3,2,1,3,3,2,1,3,2,1,1)
x = range(len(values))
y = values
values can only contain either 1,2 or 3, and I am struggling to find a way in which I could produce a scatter plot in which 1,2 and 3 values are coloured differently.