Arrange two plots horizontally
问题 As an exercise, I'm reproducing a plot from The Economist with matplotlib So far, I can generate a random data and produce two plots independently. I'm struggling now with putting them next to each other horizontally. import pandas as pd import matplotlib.pyplot as plt import numpy as np %matplotlib inline df1 = pd.DataFrame({"broadcast": np.random.randint(110, 150,size=8), "cable": np.random.randint(100, 250, size=8), "streaming" : np.random.randint(10, 50, size=8)}, index=pd.Series(np