spearman correlation in bootstrap function

5 次查看(过去 30 天)
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