I have a data frame with a date index in the form of YYYY-MM-DD and another data frame with normal indexing, they both have the same number of rows and i want to join the two data frames. Join and merge functions don't work, concat function changes the date format to a date time format by adding hours-mins-sec and there are many null values in the table. So how can i join the two data frames?
this is the code i used: pd.concat([HK4, adjusted_data], axis=1, join='outer', ignore_index=False)
1"dataset with date time index"