在pandas中的to_csv之后更改单位的值

时间:2017-11-25 14:47:13

标签: python pandas

我在使用熊猫时遇到问题。 下图中的trainData5是我想要的输出。  你可以在蓝色框中检查PNU列的第一行值。

enter image description here

执行to_csv后打开JIGA4.csv文件。 但是我发现这个单位的改变就像在图片下面的蓝框中一样。 我的代码出了什么问题?帮帮我。

enter image description here

提前致谢。

1 个答案:

答案 0 :(得分:1)

我找到了。所以我回答我的问题。

我使用了这段代码。

trainData5.to_csv(r'D:\handling data\JIGA.txt', index=None, sep='|', mode='a') 

而不是

trainData5.to_csv(r'D:\handling data\JIGA4.csv')

我使用excel打开.txt文件,然后使用选项单击拆分文本(我 不知道正确的词。)

设置用于拆分文本的分隔符。

我将单元格格式(我不知道正确的单词)更改为文本格式。

enter image description here

enter image description here

enter image description here

谢谢pshep123