If I have different dataframes with the same columns names what kind of bind/merge should I implement.
Example df1:
stock,price
stockA, 2
stockB, 10
Example of df2:
stock, price
stockC, 3
Example of df3:
stock,price
stockJ, 33
Merged
stock,price
stockA, 2
stockB, 10
stockC, 3
stockJ, 33