I have a dataframe called tweetscrypto and I am trying to remove all the words from the column "text" starting with the character "@" and gather the result in a new column "clean_text". The rest of the words should stay exactly the same:
tweetscrypto['clean_text'] = tweetscrypto['text'].apply(filter(lambda x:x[0]!='@', x.split()))
it does not seem to work. Can somebody help?
Thanks in advance
