I have been trying to extract 'words that leaders use to describe themselves' using Linked In Summaries as the data set.
1) I have cleaned the data using the 'tm' package in R
2) I extracted adjectives making use of 'POS Tagging' in the 'openNLP' package.
My first problem is that :
It extracts all adjectives, I just need adjectives such as loyal, innovative, passionate (adjectives of quality)
My Second problem :
Is there are a way to make the program understand what it is reading. Eg : the word 'mobile' gets tagged as an adjective, whereas it is a noun usually linked with 'mobile application' e.t.c
I am coding using R. Please help!