Question: Fill in the blank to complete R code to remove the stop words defined in the vector, stopwords, from the target vector, target and to
- Fill in the blank to complete R code to remove the stop words defined in the vector, stopwords, from the target vector, target and to store the result in the variable, result.
stopwords = c(a, the, what)
target = c(what, a, beautiful, day)
result = _________________________
print(result)
>> beautiful day
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
