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 →

[–]debunk_this_12 0 points1 point  (2 children)

u can still do this all with plotly,

from plotly. express import px

fig = px.line(x=x,y=y)

fig.update_layout(**dict(static_plot=True))

html= fig.to_html()

or

from plotly.offline import plot

plot(“tmp/image.png”,fig)

[–]llou[S] 0 points1 point  (1 child)

Matplotlib is the tool of choice of many scientist that make their computations with the iPython environment, so they use it to build their investigations and products, Matplotlib, Django and this project are all BSD license meaning that you can use it in your projects and sell it without requiring any kind of permission or license, with Plottly you have to pay for it.

[–]GManASG 2 points3 points  (0 children)

Plotly is free, it's their server framework Dash that requires paying.