Daniel Goman

Results 10 comments of Daniel Goman

Hello :) I'm new to open source contribution. I'd like to work on this issue. As far as I understand, all there is to do is to add examples to...

Excellent, I'll start working on it, thank you!

I have added several docstring examples in #7123, but the CI fails on some checks that (to me) don't seem related to the examples I added. I'd appreciate if anybody...

Thanks for the advice @max-sixty! I performed doctests on my machine inside a conda venv following the [Contributing Guide](https://docs.xarray.dev/en/stable/contributing.html#creating-a-development-environment) using Python 3.9, and passed the them. Yet, it doesn't pass...

> I assume you are on windows? Same always happens to me. Indeed I am. Thank you very much, I just tried running the script in the same manner on...

I noticed that [DataArray.interp_like](https://docs.xarray.dev/en/stable/generated/xarray.DataArray.interp_like.html) takes an argument called `kwargs`, but not in the traditional manner which allows passing keyworded arguments (`**kwargs`). If this is the intended behavior then I think...

I'm trying to figure out how to add examples to [DataArray.cumsum](https://docs.xarray.dev/en/stable/generated/xarray.DataArray.cumsum.html) and [DataArray.cumprod](https://docs.xarray.dev/en/stable/generated/xarray.DataArray.cumprod.html), but it's not so clear to me. It seems like they have partially dynamic docstrings. I have...

I'm running into an issue when trying to directly use the [DataArray.reduce](https://docs.xarray.dev/en/stable/generated/xarray.DataArray.reduce.html) method. At first I used [DataArray.cumsum](https://docs.xarray.dev/en/stable/generated/xarray.DataArray.cumsum.html) to see the expected behavior: ``` >>> data = np.arange(12).reshape(4,3) >>> da...

> cumsum will be a lot more work, see ongoing work in https://github.com/pydata/xarray/pull/7152 . Thanks for looking in to it. I see, thanks for the heads up :)

> RTD failure is real: Well I just fixed the issue to that. Correct me if I'm wrong, but before pushing my corrected version I pulled the latest version from...