I have a dataframe with text where I want to count the most frequent adjectives related to the word "quality" using Python.
In this case the result should look like:
('great', 2), ('horrible', 1)
I have tried using spacy and POS tagging but didn't come close to a solution and I would highly appreciate suggestions or different packages that can help me tackle this problem.