I want to concat those 2 dataframe:
circulating_supply
currency
BCH 18225550
BTC 18163250
ETH 109296900
QASH 350000000
XRP 43653780000
circulating_supply
currency
BCH 1.822718e+07
BTC 1.816522e+07
ETH 1.093100e+08
QASH 3.500000e+08
XRP 4.365378e+10
my code:
pd.concat([supp_bal, supp_prev], axis=1, sort=True)
The output:
circulating_supply circulating_supply
BCH 1.822718e+07 NaN
BCH NaN 1.822555e+07
BTC 1.816522e+07 NaN
BTC NaN 1.816325e+07
ETH 1.093100e+08 NaN
ETH NaN 1.092969e+08
QASH 3.500000e+08 NaN
QASH NaN 3.500000e+08
XRP 4.365378e+10 NaN
XRP NaN 4.365378e+10
I would like the same output without double index and NaN. Any contribution would be appreciated.