I am having a challenge in displaying the Plotly.Express graphs side by side in Jupyter Notebook. It seems the feature is not yet available. Is there a way using ipywidgets, we can achieve this? Am trying to use below code where a, b are the graph objects to be shown side by side.
import ipywidgets
from ipywidgets import HBox, Layout, widgets
from IPython.display import display
out1=widgets.Output()
out2=widgets.Output()
with out1:
display.display(a)
with out2:
display.display(b)
hbox=widgets.HBox([out1,out2])
hbox