标签:and 计算 class imp blank htm 相关系数 指定 xls
https://zhidao.baidu.com/question/526371815.html
import pandas as pd path = r‘C:\Users\Liugengxin\Desktop\火灾数据\城市火灾.xlsx‘ data = pd.read_excel(path, index_col = u‘City-2014‘) #读取数据,指定“城市”列为索引列 xishu=data.corr() print(data.corr()) #相关系数矩阵,即给出了任意两款菜式之间的相关系数 print("显示“城市火灾”与其他的相关系数:") print(data.corr()[u‘森林火灾‘]) #只显示“森林火灾”与其他菜式的相关系数 cityfire=data.corr()[u‘森林火灾‘] print(data[u‘城市火灾‘].corr(data[u‘人口‘])) #计算“城市火灾”与“人口”的相关系数
标签:and 计算 class imp blank htm 相关系数 指定 xls
原文地址:https://www.cnblogs.com/Liu269393/p/10290085.html