Using pdf to find threshold
이전 댓글 표시
Hello,
I am trying to determine a threshold for data that is p>0.05. The data is very positively skewed but I am unsure how to use or interpret the pdf() function to determine a threshold value. I want apply a 'Rayleigh'distribution but how do you choose the values for the input parameter B? I read the documentation but it does not give detailed explanation on how to choose these parameters. I've numeric matrix of example data. This is my code so far:
load('sample')
pd = fitdist(sample,'Rayleigh')
x_values = 0:.01:.5;
y = pdf(pd,x_values);
plot(x_values,y)
But the next step is finding the threshold value which I am unsure how to do.
Thank you for your help!
댓글 수: 1
Torsten
2023년 1월 22일
I am trying to determine a threshold for data that is p>0.05.
Could you explain in more detail what you mean here ?
채택된 답변
추가 답변 (1개)
Image Analyst
2023년 1월 22일
0 개 추천
For skewed distributions such as that, the triangle method works well. Function is attached.
카테고리
도움말 센터 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
