次DatetimeIndex
のように、長さが異なる2 つの を比較すると、問題が発生しました。assert
In [1]: idx1 = pd.date_range('2010-01-01','2010-12-31',freq='D')
In [2]: idx2 = pd.date_range('2010-01-01','2010-11-01',freq='D')
In [3]: assert (idx1 == idx2).all()
エラーが発生します:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-17-ad2cfd6d11c2> in <module>()
----> 1 assert (idx1 == idx2).all()
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.10.1.dev_dcd9df7-py2.7-macosx-10.8-x86_64.egg/pandas/tseries/index.pyc in wrapper(self, other)
75 result = func(other)
76
---> 77 return result.view(np.ndarray)
78
79 return wrapper
AttributeError: 'NotImplementedType' object has no attribute 'view'
これがまだ実装されていない場合は問題ありませんが、これを行うパンダの方法はありますか?
注: 以下を使用して成功しました:
In [3]: assert list(idx1) == list(idx2)
したがって、以下も機能します。
In [3]: assert list(df.index) == list(testindex)
しかし、これを行うためのより多くの方法があるかどうかを知りたいですpandas
。