I want to just remove emoji from one column and sepecial charater for eg (@ #.:/,.). Will remain in that specific column ?
I want to clean the data
I want to just remove emoji from one column and sepecial charater for eg (@ #.:/,.). Will remain in that specific column ?
I want to clean the data
You can remove emojis from your data columns using the following code
df.astype(str).apply(lambda x: x.str.encode('ascii', 'ignore').str.decode('ascii'))