我有两个excels文件(浓度,放电)。两列均为列:A =年,B =月,C =日,D =浓度/放电。但不同的长度。对于出院,我有过去30年的日常数据(很多行),而且对于集中,我有几年的月度数据。 我需要的是同一天的排放和浓度附加清单。然后再绘制这个值。但是,寻找那些我将注意力数据集中到放电效果的日子,手动......太麻烦了 - 我已经尝试过使用python,但我不知道如何处理不同的长度...谢谢:=)
import pandas as pd
concentration= pd.read_excel()
discharge= pd.read_excel()
a = concentration.iloc[:,3:4]
year_c= concentration.iloc[:,0]
year_d= discharge.iloc[:,0]
month_c=concentration.iloc[:,1]
month_d=discharge.iloc[:,1]
day_c= concentration.iloc[:,2]
day_d= discharge.iloc[:,2]
Q=[]
for element in a:
if year_c == year_d and month_c == month_d and day_c == day_d:
Q.append(a)