Dataframe merge reported an error. Different types cannot be merged
# Change the column data type first and then merge
base_df['article_id'] = base_df['article_id'].apply(int)
Dataframe merge reported an error. Different types cannot be merged
# Change the column data type first and then merge
base_df['article_id'] = base_df['article_id'].apply(int)