I have two dataset,
df1
100
20
30
5
df2
3
4
5
6
When i try to merge df3=pd.concat([df1, df2], axis=1, ignore_index= False)
I get the output as :
df1 df2
100.0 3
20.0 4
30.0 5
5.0 6
It gets automatically changed to float, and .astype("Int64"), doesnot change the float, is there any way to avoid this?