28

另一个熊猫问题!

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

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

4 回答 4

44

啊,当然已经有解决方案了:

from pandas.util.testing import assert_frame_equal
于 2013-11-12T11:45:48.087 回答
6

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

于 2015-04-09T10:15:14.663 回答
4

numpy 的实用程序也可以工作:

import numpy.testing as npt

npt.assert_array_equal(df1, df2)
于 2014-09-14T17:55:15.367 回答
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
于 2017-02-15T06:43:35.520 回答