I have two series of stock prices (containing date, ticker, open, high, low, close) and I'd like to know how to combine them to create a dataframe just like the way Yahoo!Finance does. Is it possible?
"Join and merge" don't seem to work
I have two series of stock prices (containing date, ticker, open, high, low, close) and I'd like to know how to combine them to create a dataframe just like the way Yahoo!Finance does. Is it possible?
"Join and merge" don't seem to work
Copyright © 2021 Jogjafile Inc.
Use
pd.concat([sr1, sr2], axis=1)if neither one ofjoinandmergework.