I have two pandas data frames of the same size (same rows and columns) and wish to join them so that the resulting data frame has two values in each cell (coming from the two initial data frames). The first data frame contains integers and the second data frame contains floats. Is there a way to do this? Thank you.
I've looked into pd.merge(), pd.join(), and pd.concat() but wasn't able to get them to solve my problem.