How to visualize frequency count of unique words

Hi
I can clearly see that in dictionary all the index are stored for corresponding feature vector. But where is this count of words is stored in vocab ?? because I see the result in feature vector that each word is stored at it’s index with it’s frequency count, how can I visualize this

hey @pasta ,
By using CountVectorizer object you can perform this task , as it doesn’t provides any such attribute to be called.
To implement this , you build up your own CountVectorizer class or to just plot the count of words you can iterate over its vocabulary to check the words and search that word’s count in sentences.

I hope this helps you.
Thank You and Happy Learning :slightly_smiling_face:.