-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
The textory.statistics.variogram method yields different results for numpy and dask arrays.
To Reproduce
In [1]: from textory.statistics import variogram
In [2]: import dask.array as da
In [8]: arr = da.arange(100).reshape((10,10))
In [9]: variogram(arr, lag=4).compute()
Out[9]: 401.475
In [10]: variogram(arr.compute(), lag=4)
Out[10]: 251.49Expected behavior
The results to be identical :)
Environment Info:
- OS: Linux
- Textory Version: 0.2.7b0
- Dask Version: 2021.08.1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working