Step 2: Identifying the text sources
Employee reviews can come from various sources. If your human resources department had the resources, you could have a third party administer focus groups to interview employees both internally and from your competitor.
Forbes and others publish articles about the "best places to work", which may mention Amazon and Google. Another source of information might be anonymous online reviews from websites like Indeed, Glassdoor or CareerBliss.
Here, we'll focus on a collection of anonymous online reviews.
Den här övningen är en del av kursen
Text Mining with Bag-of-Words in R
Övningsinstruktioner
- View the structure of
amznwithstr()to get its dimensions and a preview of the data. - Create
amzn_prosfrom the positive reviews columnamzn$pros. - Create
amzn_consfrom the negative reviews columnamzn$cons. - Print the structure of
googwithstr()to get its dimensions and a preview of the data. - Create
goog_prosfrom the positive reviews columngoog$pros. - Create
goog_consfrom the negative reviews columngoog$cons.
Interaktiv övning med praktiskt arbete
Testa den här övningen genom att slutföra den här exempelkoden.
# Print the structure of amzn
___
# Create amzn_pros
___ <- ___
# Create amzn_cons
___ <- ___
# Print the structure of goog
___(___)
# Create goog_pros
___ <- ___
# Create goog_cons
___ <- ___