I want to remove the stop words from my column \"tweets\". How do I iterative over each row and each item?
pos_tweets = [(\'I love this car\', \'positive\'),
Using List Comprehension
test['tweet'].apply(lambda x: [item for item in x if item not in stop])
Returns:
0 [love, car] 1 [view, amazing] 2 [feel, great, morning] 3 [excited, concert] 4 [best, friend]