I am trying to track abnormal values in a dataset over a period of time. Currently, I am using z-scores and the 68-95-99.7 rule for all datasets that are normally distributed. Unfortunately, a small number of these datasets are not normally distributed, and I need a different strategy.
After reading this reddit post, it seems like working with z-scores is still viable as long as I remember that "since [the] distribution is skewed right, the distribution of z-scores will be skewed right". So, it looks like I need to do two things:
- measure the skewness of the distribution
- adjust the z-score to normalize for this skewness
Anyways, I was wondering if there was a better approach for using z-scores with abnormal distributions. If not, what measures of skewness would be best used for this formula, and in what way could the z-score be normalized with this in mind?
Thanks for your help,