它根据 2 个或更多数据集计算 Spearman 等级相关系数,以及相关的 t 检验和 p 值。 该代码改编自 Numerical Recipes 一书 ( http://www.nr.com/ )
例子: >> x = [1 2 3 3 3]'; >> y = [1 2 2 4 3; rand(1,5)]'; >> [r,t,p] = spear(x,y)
>> [r,t,p]=spear(x,y)
r =
0.8250 -0.6000
t =
2.5285 -1.2990
p =
0.0855 0.2848
2021-12-18 14:03:26
1KB
matlab
1