NCAR / esds

Repository for hosting material related to the Earth System Data Science (ESDS) initiative efforts
https://ncar.github.io/esds
Apache License 2.0
24 stars 20 forks source link

esds/posts/2022/dask-debug-detrend/ #174

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Debugging dask workflows: Detrending — NCAR-ESDS 0.1 documentation

https://ncar.github.io/esds/posts/2022/dask-debug-detrend/

hughdbrown commented 2 years ago

Simpler expression for np.stack([x ** (N - 1 - i) for i in range(N)], axis=1) is np.stack([x ** i for i in reversed(range(N))], axis=1)

ALDepp commented 9 months ago

I just wanted to say thank you for this post! Great explanation!