Let say, I have 3-time series. with value of
a = [1, 2, 4, 5, 3, 1 ]
b = [3, 5, 2, 9, 3, 1]
c = [2, 5, 6, 7, 3, 1]
now I want to rate the deviation of values from each time series. for example, 2nd values of all-time series 2, 5, 5, and it "mean" values are 4 and deviation from mean is 2, -1, -1. I want to say anything <0 bad, 0 is ok and >0 is good. So for 2nd element rating would good, bad, bad in this example.
Now if I want to rate, the 3rd element in a similar way, it would be
mean= 4
deviation = 0, 2, -2
rating = ok, good, bad
Now my question is I want to rate the 3rd element considering the rating of the 2nd element. And continue in a similar fashion. Sorry for basic questions, but any proven method where this can be done effectively and successfully would be really helpful. python related handbook link is also appreciated.