我有一组数据,如:
0 1
0 type 1 type 2
1 type 3 type 4
我怎样才能把它转移到:
0 1
0 1 2
1 3 4
使用应用程序转换函数的perfer
解决方法:
>>> df.apply(lambda x: x.str.replace('type ','').astype(int))
0 1
0 1 2
1 3 4
如果不需要转换为int,请删除.astype(int)