Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created October 24, 2020 06:40
Embed
What would you like to do?
fig = make_subplots(rows=1, cols=2)
trace1 = go.Histogram(x = test["Number of Characters"])
fig.add_trace(trace1, row=1, col=1)
trace2 = go.Box(y = test["Number of Characters"])
fig.add_trace(trace2, row=1, col=2)
fig.update_layout(showlegend=False)
fig.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment