Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python NLTK visualization [closed]

I am currently doing natural language processing using python NLTK. I want to generate some beautiful graphics of the representation of input. What package can I do to get something like this?

enter image description here

enter image description here

like image 206
wrek Avatar asked Feb 24 '17 00:02

wrek


1 Answers

Bokeh is the go-to visualization library for Python. Have a look at its gallery to see what it can do. I actually don't know if it can generate the kind of images you've shown though.

Altair is another capable plotting library which kindly includes a few links to other libraries in its README:

  • Matplotlib
  • Bokeh
  • Seaborn
  • Lightning
  • Plotly
  • Pandas built-in plotting
  • HoloViews
  • VisPy
  • pygg
like image 81
Alex Taylor Avatar answered Sep 19 '22 18:09

Alex Taylor