Pandas数据帧值相等测试

时间:2013-11-12 11:45:48

标签: python pandas

另一个熊猫问题!

我正在编写一些单元测试来测试两个数据帧是否相等,但是,测试似乎没有看到数据帧的值,只有结构:

dates = pd.date_range('20130101', periods=6)

df1 = pd.DataFrame(np.random.randn(6, 4), index=dates, columns=list('ABCD'))
df2 = pd.DataFrame(np.random.randn(6, 4), index=dates, columns=list('ABCD'))

print df1
print df2
self.assertItemsEqual(df1, df2)

- >真

在声明相等之前,我是否需要将数据帧转换为另一个数据结构?

4 个答案:

答案 0 :(得分:40)

啊,当然有一个解决方案:

from pandas.util.testing import assert_frame_equal

答案 1 :(得分:5)

虽然assert_frame_equal在单元测试中很有用,但我发现以下对分析有用,因为人们可能希望进一步检查哪些值不相等: df1.equals(df2)

答案 2 :(得分:4)

numpy的公用事业也在工作:

import numpy.testing as npt

npt.assert_array_equal(df1, df2)

答案 3 :(得分:0)

In [62]: import numpy as np

In [63]: import pandas as pd

In [64]: np.random.seed(30)

In [65]: df_old = pd.DataFrame(np.random.randn(4,5))

In [66]: df_old
Out[66]: 
          0         1         2         3         4
0 -1.264053  1.527905 -0.970711  0.470560 -0.100697
1  0.303793 -1.725962  1.585095  0.134297 -1.106855
2  1.578226  0.107498 -0.764048 -0.775189  1.383847
3  0.760385 -0.285646  0.538367 -2.083897  0.937782

In [67]: np.random.seed(30)

In [68]: df_new = pd.DataFrame(np.random.randn(4,5))

In [69]: df_new
Out[69]: 
          0         1         2         3         4
0 -1.264053  1.527905 -0.970711  0.470560 -0.100697
1  0.303793 -1.725962  1.585095  0.134297 -1.106855
2  1.578226  0.107498 -0.764048 -0.775189  1.383847
3  0.760385 -0.285646  0.538367 -2.083897  0.937782

In [70]: df_old.equals(df_new) #Equality check here, returns boolean expression: True/False
Out[70]: True