Пример #1
0
 def test_fillna(self):
     # limit not implemented when only value is specified
     p = Panel(np.random.randn(3, 4, 5))
     p.iloc[0:2, 0:2, 0:2] = np.nan
     pytest.raises(NotImplementedError, lambda: p.fillna(999, limit=1))