Box-cox transformation isn't working!?

조회 수: 17 (최근 30일)
Sophie Chumas
Sophie Chumas 2020년 1월 14일
댓글: Sophie Chumas 2020년 1월 15일
Hi, it's me (AGAIN), another time another problem...
I've written the following code - where strength is a matrix of data [128 x 1] that has a non-normal distribution. Below I have tried to apply the box-cox transformation but it still returns the kstest as 1...what am I doing wrong!?
Thanks! :)
%%Box-cox transformation
%applying box-cox
[box_cox_strengths, lambda] = boxcox(strength);
box_cox_data = [box_cox_strengths pure_time];
[h, p] = kstest(box_cox_strengths);

답변 (1개)

David Hill
David Hill 2020년 1월 14일
My understanding is that the boxcox() transformation changes the data into an approximately normal distribution. And the kstest() tests if the data is from a normal distribution and returns 1 if it is. Therefore, it seems that everything is working fine.
  댓글 수: 1
Sophie Chumas
Sophie Chumas 2020년 1월 15일
Ah, might've gotten confused with interpreting the results of the kstest then! Thanks.
Although when I apply the kstest to the original non-normally distributed data, it comes out with the same answer...other people have been getting '0' returned when their distribution has been transformed by box-cox, and '1' for their initial distribution thus suggesting if it's normal, the kstest outcome is '0'??
Thanks! :)

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by