There are two CSV files: area1.csvarea2.csv
There is no item name in the time column, so
If I want to combine horizontally based on time, how can I modify it?
I would appreciate it if you could let me know!
df1=pd.read_csv(area1.csv,index_col=0)
df2=pd.read_csv(area2.csv,index_col=0)
df3=pd.merge([df1,df2], how="outer")
df3.to_csv(area3.csv,index=False,encoding='utf-8')
df3=pd.merge(df1,df2,left_index=True,right_index=True,how='outer')
578 Understanding How to Configure Google API Key
610 GDB gets version error when attempting to debug with the Presense SDK (IDE)
912 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
617 Uncaught (inpromise) Error on Electron: An object could not be cloned
© 2024 OneMinuteCode. All rights reserved.