作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样一个数据框
df = pd.DataFrame({'a' :[{'id':'0','num':10 } ,{'id':'1','num':20 },{'id':'2','num':30 }]})
我想得到
id num
0 0 10
1 1 20
2 2 30
我只想保留数字和字母,然后应用 split
但是我做不到
df['a'] = df['a'].replace('[^a-zA-Z0-9]', '', regex = True)
df
或
df['a'].str.strip('{').astype(str)
或
df['a'].str.replace('\{','')
所有选项都不正确。如何解决?
最佳答案
国际联合会
只需将系列转换为数据框
pd.DataFrame(df.a.tolist())
id num
0 0 10
1 1 20
2 2 30
如果 a
中的值是可以转换为字典的字符串,请使用 ast
import ast
pd.DataFrame(df.a.apply(lambda x: ast.literal_eval(x)).tolist())
关于python - 如何将一列拆分为一些列,其中包含像 dict 类型的单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48814815/
我是一名优秀的程序员,十分优秀!