Spearman correlation in Matlab!
233 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
M G
el 27 de Oct. de 2011
Respondida: Rithy Khouy
el 25 de Ag. de 2022
Hey Matlab users,
If I have two series of data:
a = [1 4 6 3 4 6 7 8]; b [34 56 34 56 79 23 48 28];
and I want to perform a Spearman correlation what would be the proper command in MATLAB? I need both p-value and RHO.
Thanks for your help.
Mehdi
0 comentarios
Respuesta aceptada
Wayne King
el 27 de Oct. de 2011
Hi, If you have the Statistics Toolbox.
a = [1 4 6 3 4 6 7 8];
b = [34 56 34 56 79 23 48 28];
[RHO,PVAL] = corr(a',b','Type','Spearman');
0 comentarios
Más respuestas (1)
Rithy Khouy
el 25 de Ag. de 2022
a = [1 4 6 3 4 6 7 8];
b = [34 56 34 56 79 23 48 28];
[RHO,PVAL] = corr(a',b','Type','Spearman');
0 comentarios
Ver también
Categorías
Más información sobre Descriptive Statistics en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!