How to save an interactive plot produced by matplot

4.6k Views Asked by At

I got a super graph that I would like to export as an html file to be showed on an website but I don't know how to figure that. Have you got an idea ?

plot i want to export

1

There are 1 best solutions below

1
On

You can use mpld3. This is a great tutorial. The mpld3 library's main functionality is to take an existing matplotlib visualization and transform it into some HTML code that you can embed on your website.

Use fig_to_html file, which accepts a matplotlib figure object as its sole argument and returns HTML.

To use the fig_to_html method , simply add the following code to the end of our Python script:

html_str = mpld3.fig_to_html(fig)
Html_file= open("index.html","w")
Html_file.write(html_str)
Html_file.close()