I have 2 dataframe that are the same size.
I am not sure if "merge" is the right word here, but I would like to create a new dataframe with values that is minimum between the two.
df_1 ask bid A 0 2 B 0.643319 1.000000 C 0.722802 0.920498 df_2 ask bid A 1 0.643319 B 0.643319 0 C 0.722802 0.920498 df_3 ask bid A 0 0.643319 B 0.643319 0 C 0.722802 0.920498 Thanks