熊猫指数过剩精确度问题

时间:2015-04-21 13:52:36

标签: python pandas

我希望我的索引的小数精度为3,但是Pandas正在强制索引达到更高的精度。这是一个可重复的例子:

temprange = [j*.001 for j in range(1,int(10/.001)+1)]
print temprange[:5]
>> [0.001, 0.002, 0.003, 0.004, 0.005]
print pd.DataFrame(index=temprange).index.tolist()[:5]
>> [0.001, 0.002, 0.0030000000000000001, 0.0040000000000000001, 0.0050000000000000001]

如何保持索引的原始形式?

谢谢。

0 个答案:

没有答案