我正在尝试合并两个都有'product_desc‘列的数据帧。我使用的是Pandas 0.13和Python 2.7。small_df = pd.merge(small_df, linregress_df, on = 'product_desc', how = 'left')pandas.core.index.InvalidIndexError: Reindexing only
在Pandas数据帧中有2列: "CREATED ON DATE" (dtype: datetime64[ns]) e.g. 2019-06-16
"CREATED AT TIME" (dtype:object) e.g. 19:46:14 由于类型不匹配,简单地添加字段是不起作用的。df["CREATED DATETIME"] = df["CREATED ON DATE"] + df["CREAT