Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 453 Bytes

File metadata and controls

17 lines (13 loc) · 453 Bytes

Text Filtering

A very simple example of dealing with text input.


This code is concerned about importing a text (.txt) file, breaking the text into words inside a list, and then creating a new list by excluding certain words.

After that we use the 'Counter' library to count the most commom words in our list.

How does it look like?

graphic

Dependencies

collections
math
matplotlib
numpy