sklearn 中皮尔森相关性。

相关性

python 复制代码
import pandas as pd
from pandas import set_option
iris=pd.read_csv('data/iris.csv')
set_option('precision', 2) # 设置数据的精确度
iris.corr(method='pearson') # 皮尔森相关性
python 复制代码
correlations = iris.corr(method='pearson')
names = correlations.columns.tolist()
fig = plt.figure(figsize=(8, 8))
ax = fig.add_subplot(111)
cax = ax.matshow(correlations, vmin=-1, vmax=1)
fig.colorbar(cax)
ticks = np.arange(0, 4, 1)
ax.set_xticks(ticks)
ax.set_yticks(ticks)
ax.set_xticklabels(names)
ax.set_yticklabels(names)
plt.show()
相关推荐
编程、小哥哥9 分钟前
python操作mysql
android·python
Serendipity_Carl10 分钟前
爬虫基础之爬取某站视频
爬虫·python·pycharm
2401_8904167117 分钟前
Recaptcha2 图像怎么识别
人工智能·python·django
杰九22 分钟前
我的世界(Minecraft)计算器python源码
python·开源·游戏程序
Channing Lewis39 分钟前
python如何使得pdf加水印后的大小尽可能小
开发语言·python·pdf
机器之心41 分钟前
贾佳亚团队联合Adobe提出GenProp,物体追踪移除特效样样在行
人工智能
一叶_障目1 小时前
机器学习之决策树(DecisionTree——C4.5)
人工智能·决策树·机器学习
_.Switch1 小时前
Python Web开发:使用FastAPI构建视频流媒体平台
开发语言·前端·python·微服务·架构·fastapi·媒体
思码逸研发效能1 小时前
在 DevOps 实践中,如何构建自动化的持续集成和持续交付(CI/CD)管道,以提高开发和测试效率?
运维·人工智能·ci/cd·自动化·研发效能·devops·效能度量
草明2 小时前
Mongodb 慢查询日志分析 - 1
数据库·python·mongodb