Python计算相关性

Posted JeemyJohn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python计算相关性相关的知识,希望对你有一定的参考价值。

计算相关性

import numpy as np
import pandas as pd

# load data
data = pd.read_csv('result.csv', header=0)
print(data)

df = data.drop(['experiment'], axis=1)

# 计算不同的相关系数
corr = df.corr(method='pearson')
print(corr)

print('\\n-----------------------------------------------------------------------------------------------\\n')

corr = df.corr(method='spearman')
print(corr)

以上是关于Python计算相关性的主要内容,如果未能解决你的问题,请参考以下文章

Python计算相关性

python pandas 计算相关系数

python-计算数据的相关性

Python偏相关(Partial Correlation)或者部分相关性系数计算实战:偏相关性(Partial Correlation)计算及结果解读

python计算特征与目标的相关性并可视化

根据python中的值计算字典的相关性