lfery

Results 1 comments of lfery

I had the same problem and I was able to solve it by replacing this line in standard.py `nonMissingIndex = np.where(np.logical_not(np.isnan(self._data[0])))[0]` by ``` nonMissingIndex = dask.array.where(np.logical_not(np.isnan(self._data[0])))[0] nonMissingIndex.compute_chunk_sizes() ``` I think...