Home > other >  How do I plot two graphs of two different dataframes side by side?
How do I plot two graphs of two different dataframes side by side?

Time:10-05

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.

enter image description here

  • Related