pandas 从特定列中删除

6jjcrrmo  于 2022-12-02  发布在  其他
关注(0)|答案(1)|浏览(130)

我只想从一个列中删除表情符号,并为例如(@ #.:/,.)选择一个特殊字符。是否将保留在该特定列中?
我要清除数据

8oomwypt

8oomwypt1#

可以使用以下代码从数据列中删除表情符号

df.astype(str).apply(lambda x: x.str.encode('ascii', 'ignore').str.decode('ascii'))

相关问题