我无法定义用于计算Spearman相关矩阵Python 3.6的矩阵

时间:2018-07-19 20:11:55

标签: python file-io correlation coefficients pearson-correlation

我正在尝试编写一个代码,该代码将从Excel中查找矩阵的Pearson和Spearman相关性,而不是根据我的阈值显示它是否相关。我的代码是这样的:

import pandas   

Correlation_coefficient = input ("PEARSON OR SPEARMAN?")   
A = "PEARSON"   
B = "SPEARMAN"

    if Correlation_coefficient == B:
    print ("Spearman code will appear here")

我的问题是我们无法使用excel文件计算spearman相关系数,因为我的数字在矩阵中定义并且spearman不接受矩阵中的值。我如何计算spearman相关系数?

0 个答案:

没有答案