Wonder if anyone can help.
I have a set of lists of numbers, around 300 lists in the set, each list of around 200 numbers. What I wish to calculate is the "relative stability" of each list.
For example:
List A: 100,101,103,99,98 - the range is v small - so stable.
List B: 0.3, 0.1, -0.2, 0.1 - again, v small range, so stable.
List C: 0.00003, 0.00002, 0.00007, 0.00008 - stable.
Now, I could use standard deviation - but the values returned by the standard deviation will be relative to the values within each list. So std for list C would be tiny in comparison to std for list A - and therefore numerically not give me a comparable measure of stability/volatility enabling me to meaningfully ask: if list A more or less stable than list C?
So, I wondered if anyone had any suggestions for a measure that will be comparable across such lists?
Many thanks for any help. R