I am doing LDA topic modeling in Python and the folloing is my code for visualization:
import pyLDAvis.gensim
pyLDAvis.enable_notebook()
vis = pyLDAvis.gensim.prepare(lda_model, corpus, dictionary=lda_model.id2word)
vis
I am looking for a way to export the Intertopic Distance Map graph to PDF or at least plot it using matplotlib then save as pdf, any idea?