Question re: ecdf

조회 수: 3 (최근 30일)
Jared
Jared 2017년 8월 2일
댓글: Jared 2017년 8월 2일
I've been looking for a particular feature in the above MATLAB function but haven't found exactly what I'm looking for. I'm looking for a function that can take a particular input, x, and return the estimated p-value corresponding to a set of empirical data. What I'm looking for is analogous to the normcdf function where you give it an input and it will return a probability corresponding to the normal distribution.
  댓글 수: 2
Akira Agata
Akira Agata 2017년 8월 2일
편집: Akira Agata 2017년 8월 2일
You want to obtain CDF (which normcdf function generates) or p-value used in hypothesis testing? If what you want is empirical CDF, you can do it by combining ecdf function and some interpolation method.
Jared
Jared 2017년 8월 2일
Looks like this sequence of commands below does what I was looking for.
[f,x]=ecdf(y);
mu=0.5000;
CDFmu=max(f(x<=mu))*100;

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Hypothesis Tests에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by