fig = make_subplots(1,4)
cols = ['OrderValue', 'TransactionPrice', 'ProductPrice', 'ProductUnits']
for i, col in enumerate(cols):
fig.add_trace(
go.Histogram(x=silver_df.select(col).toPandas()[col]),
row=1, col=i+1
)
p = plot(fig, output_type='div')
displayHTML(p)
I am using the above code to generate a Plotly graph. The code runs, but the output is squished (see attachment).
Any tips as to how to fix it?