bmabey/pyLDAvis

Saving visualization as png

hp0404 opened this issue · 1 comments

Is it possible to save model visualization as .png?

The code below allows me to save vis as .html, but I don't see anything in the docs about exporting to other formats


import pyLDAvis
import pyLDAvis.gensim

pyLDAvis.enable_notebook()
vis = pyLDAvis.gensim.prepare(lda, corpus, dictionary)
pyLDAvis.save_html(vis, "vis.html")