These resources show how to take data from a single Pandas DataFrame and plot different columns subplots on a Plotly graph. I\'m interested in creating figures from separate
You can also try the following using cufflinks:
cf.subplots([df1.figure(kind='bar',categories='category'), df2.figure(kind='bar',categories='category')],shape=(2,1)).iplot()
And this should give you: