How can I calculate the 95% confidence interval for spearman correlation values?

조회 수: 42 (최근 30일)
I am trying to get the 95% CI of the spearman correlation of 2 vectors, but I can't figure out how obtain that with the function
corr(x1,x2,'Type','Spearman', 'tail', 'both');
Does anyone know any built-in fuction to calculate that?

채택된 답변

Jeff Miller
Jeff Miller 2020년 6월 5일
I don't think there are formulas for that but you can estimate it with bootstrapping:
mycorr = @(x1,x2) corr(x1,x2,'Type','Spearman', 'tail', 'both')
nIterations = 10000;
[lower, upper] = bootci(nIterations,{mycorr,x1,x2})

추가 답변 (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