How do I log normalise a set of positively skewed data and find the z scores?

5 views (last 30 days)
Hi there,
I have a set of positively skewed data (A) that I wish to log normalise before I find the z scores of the data. However, after applying log to my data, the z scores returned with NaN for all indexes.
log_A = log(A);
zscore_A = zscore(log_A);
After taking the log of the data:
After using the z score function:
Am I doing something wrong?
I really appreciate your help! Thank you in advance!

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!