前提・実現した> いこと
python初心者です。
Excel内にある年月日別の気象データを読み込んで、3列目の気温の全データから最大値を求めたい。
①Excelファイルを読み込んで、それぞれの変数に対して配列を作成する。
②numpy関数を使って、ファイル内の3列目(気温)の最大値と相関係数を求める。
③求めた気温の最大値が存在する行の1列目と2列目を表示。
という流れで作業を行いたいのですが、まるで分かりません。
発生している問題・エラーメッセージ
ImportError: No module named pandas
エラーメッセージ
該当のソースコード
ソースコード #-*- coding: utf-8 -*- import numpy as np import pandas as pd s=pd.read_Excel("weather_data_Tokyo_2018_2019.csv") i=0 a=[] b=[] c=[] n=[] m=[] l=[] for i in range(len(s)): for k in range(5): line=s[i][k].split(",") n.append(int(line[i][3])) m.append(int(line[i][4])) l.append(int(line[i][5])) a.append(int(line[i][0])) a1=np.where(n==max(n)) b.append(int(line[i][1])) b1=np.where(n==max(n)) c.append(int(line[i][2])) c1=np.where(n==max(n)) j=np.where(np.max(n)) r1=corrcoef(n,m)[0,1] r2=corrcoef(n,l)[0,1] print("Tmax = "+max(n)+" degree when "+str(a1)+"/"+str(b1)+"/"+str(c1)) print("Correlation coefficient for temperature and radiation = "+N.NN) print("Correlation coefficient for temperature and wind speed = "+N.NN) if r1>r2: print("Temperature shows stronger correlation with "+str(r1) ) else: print("Temperature shows stronger correlation with "+str(r2) ) pd.close() ### 試したこと ここに問題に対して試したことを記載してください。 ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー