Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个系列需要加入一个 DataFrame。
每个系列都有一个日期索引和相应的价格。
当我使用 concat 时,我得到一个具有一个索引(好)但两列具有相同值(坏)的 DataFrame。
zee_nbp = pd.concat([zee_da_df,nbp_da_df],axis=1)
这些值对于 zee_da_df 是正确的,但对于 nbp_df_df 是重复的。有任何想法吗?我已经检查过,每个系列在连接之前都有不同的值
提前致谢