spearman correlation in bootstrap function

조회 수: 5 (최근 30일)
Tamir Eisenstein
Tamir Eisenstein 2019년 3월 11일
댓글: Jeff Miller 2019년 3월 12일
Hi Matlab experts,
How can I implement a spearman correlation in the bootstrp function:
bootstat = bootstrp(1000,@corr,a,b) ?
Thanks,
Tamir

답변 (1개)

Jeff Miller
Jeff Miller 2019년 3월 11일
scorr = @(a,b)(corr(a,b,'Spearman'));
bootstat = bootstrp(1000,scorr,a,b);
  댓글 수: 2
Tamir Eisenstein
Tamir Eisenstein 2019년 3월 12일
Hi Jeff,
Thanks! but it runs an error message when I try to run this code (I called the script "trial"):
Error using internal.stats.parseArgs (line 42)
Wrong number of arguments.
Error in corr (line 110)
[type,rows,tail] = internal.stats.parseArgs(pnames,dflts,varargin{:});
Error in trial>@(a,b)(corr(a,b,'Spearman'))
Error in bootstrp (line 170)
bootstat = feval(bootfun,bootargs{:});
Error in trial (line 2)
bootstat = bootstrp(1000,scorr,a,b);
Caused by:
Unable to evaluate BOOTFUN with the supplied arguments.
Jeff Miller
Jeff Miller 2019년 3월 12일
Ooops, sorry, it should be
scorr = @(a,b)(corr(a,b,'type','Spearman'));

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

Community Treasure Hunt

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

Start Hunting!

Translated by