I have a case study to work on, in which there are several customer reviews available and I have to do the following
predict their sentiment (positive, negative, neutral) based on their reviews
display a wordcloud of not the frequently occurring words, but the words which are the pain-points of the customer and of what is the customer happy about.
e.g. If many customers are happy about leather-strap of the watch, then the wordcloud should display 'leather-strap' in the wordcloud of positive sentiments.
& If many customers are complaining/unhappy about the dial-size, then the wordcloud should display 'dial-size' in the wordcloud of negative sentiments.
Point 1 can be achieved more or less using VADER.
But I am not sure how to achieve point 2, as it is not the usual wordcloud of frequently occurring words.
Can you please help me on how can I achieve the second task?