替换Pandas DataFrame中的字符

时间:2019-11-17 14:23:39

标签: python pandas

我想将以下图表导出到LaTex,然后将“ +/-”替换为“±”,仅用于外观。但是,无论我尝试使用什么字符(也可以是“ a”或其他任何字符),它都不会改变或列为空。我在几个论坛上找到了代码,但我不知道自己在做什么错。

df = pd.DataFrame({'A': ["3.90+/-0.04", "3.550+/-0.035", "3.250+/-0.033"],'B': [0.04175, 0.03800, 0.03490]})

df=df.replace("+/-", "±", regex=False)

print(df)

df.to_latex('232_a.txt', index=False, encoding="ISO-8859-1")

我将不胜感激。预先感谢!

1 个答案:

答案 0 :(得分:3)

您可以使用

df['A'] = df['A'].str.replace("+/-", "±", regex=False)

输出:


    A   B
0   3.90±0.04   0.04175
1   3.550±0.035     0.03800
2   3.250±0.033     0.03490