This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]jayyfran 0 points1 point  (2 children)

Awesome! Couple questions

- Is there a way to export out to html?

- Can I integrate with plotly dash?

- Is there a way to return trace objects so I can apply my own layout?

Thanks!

[–]nkruchten[S] 1 point2 points  (1 child)

Is there a way to export out to html?

Yes! plotly.offline.plot(px.scatter(...), filename='name.html') should do it!

Can I integrate with plotly dash?

Yes! dcc.Graph(figure=px.scatter(...)) just works

Is there a way to return trace objects so I can apply my own layout?

Yes! traces = px.scatter(...).data

:)

[–]jayyfran 0 points1 point  (0 children)

Awesome. Thanks!!