textclean (version 0.9.3)

replace_rating: Replace Ratings With Words

Description

Replaces ratings with word equivalents.

Usage

replace_rating(x, rating_dt = lexicon::key_rating, ...)

Arguments

x

The text variable.

rating_dt

A data.table of ratings and corresponding word meanings.

ignored.

Value

Returns a vector of strings with ratings replaced with word equivalents.

Examples

Run this code
# NOT RUN {
x <- c("This place receives 5 stars for their APPETIZERS!!!",
     "Four stars for the food & the guy in the blue shirt for his great vibe!",
     "10 out of 10 for both the movie and trilogy.",
     "* Both the Hot & Sour & the Egg Flower Soups were absolutely 5 Stars!",
     "For service, I give them no stars.", "This place deserves no stars.",
     "10 out of 10 stars.",
     "My rating: just 3 out of 10.",
     "If there were zero stars I would give it zero stars.",
     "Rating: 1 out of 10.",
     "I gave it 5 stars because of the sound quality.",
     "If it were possible to give them 0/10, they'd have it."
)

replace_rating(x)
# }

Run the code above in your browser using DataLab