go.Scatter and Distplot

Hi, Everyone.
I need to build a dashboard using go.Scatter and Distplot. Is there any example how to use both of them in the same plot?

Regards from Peru.

Jose

all of the figure_factory methods return a figure which has a standard format.

So, roughly, you can do something like:

fig = ff.create_distplot(...)

fig['data'].append(go.Scatter(...))

You can always print(fig) to see its underlying structure.

1 Like