I have two DataFrames that have time-series data of BTC. I want to display the graphs side by side to analyze them.
display(data_df.plot(figsize=(15,20)))
display(model_df.plot(figsize=(15,20)))
When I plot them like this they stack on top of each-other vertically. I want them side-by-side so they look like this.