home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

9 rows where issue = 420584430 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: reactions, created_at (date), updated_at (date)

user 8

  • rbavery 2
  • cchwala 1
  • shoyer 1
  • max-sixty 1
  • agharbi6 1
  • apatlpo 1
  • keewis 1
  • stale[bot] 1

author_association 3

  • NONE 4
  • MEMBER 3
  • CONTRIBUTOR 2

issue 1

  • Improving documentation on `apply_ufunc` · 9 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
1111433331 https://github.com/pydata/xarray/issues/2808#issuecomment-1111433331 https://api.github.com/repos/pydata/xarray/issues/2808 IC_kwDOAMm_X85CPyBz max-sixty 5635139 2022-04-27T20:09:06Z 2022-04-27T20:09:06Z MEMBER

I think we can close this given we have the examples; even though there's still more to do on the docs.

Documentation contributions are really valued, if anyone has thoughts on how we can make them better.

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
896827548 https://github.com/pydata/xarray/issues/2808#issuecomment-896827548 https://api.github.com/repos/pydata/xarray/issues/2808 IC_kwDOAMm_X841dICc cchwala 102827 2021-08-11T13:28:08Z 2021-08-11T13:28:08Z CONTRIBUTOR

Thanks @keewis for linking the new tutorial. It helped me a lot figuring out how to use apply_ufunc for my 1D case. The fact that the tutorial shows the "typical" errors messages that you get when trying to use it, make the tutorial really nice to follow.

{
    "total_count": 1,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 1,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
896306901 https://github.com/pydata/xarray/issues/2808#issuecomment-896306901 https://api.github.com/repos/pydata/xarray/issues/2808 IC_kwDOAMm_X841bI7V keewis 14808389 2021-08-10T20:49:01Z 2021-08-10T20:49:01Z MEMBER

we do have a tutorial now: https://xarray.pydata.org/en/stable/examples/apply_ufunc_vectorize_1d.html

Not sure if that covers everything mentioned here, though. cc @dcherian

{
    "total_count": 3,
    "+1": 3,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
896293496 https://github.com/pydata/xarray/issues/2808#issuecomment-896293496 https://api.github.com/repos/pydata/xarray/issues/2808 IC_kwDOAMm_X841bFp4 agharbi6 9773565 2021-08-10T20:23:38Z 2021-08-10T20:23:38Z NONE

Is there any update on this?

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
521758170 https://github.com/pydata/xarray/issues/2808#issuecomment-521758170 https://api.github.com/repos/pydata/xarray/issues/2808 MDEyOklzc3VlQ29tbWVudDUyMTc1ODE3MA== rbavery 22258697 2019-08-15T19:02:51Z 2021-07-21T16:47:47Z NONE

Ryan Abernathey gave a helpful answer for how to apply a pixel wise function using dask and apply_ufunc: https://stackoverflow.com/questions/57419541/how-to-use-apply-ufunc-with-numpy-digitize-for-each-image-along-time-dimension-o/57513184#57513184

I think the docs could improve on showing how to use apply_ufunc if we have a function that needs to be applied image-wise, like an image filter or segmentation, if we are chunking by time. Or, if the function needs to be applied window-wise, in which case the chunks are spatial (maybe DataArray.rolling and DataArray.reduce solve this case, but DataArray.reduce lacks an example).

Having examples that speak to these 2 specific use cases would, I think, help newcomers (like myself) that are coming from any domain that works with 2D ('x', 'y') or 3D ('x', 'y', 'time') arrays.

Currently the two examples in the docs show how to apply_ufunc with a 1D array http://xarray.pydata.org/en/stable/computation.html#comput-wrapping-custom

And two 2D arrays ('place', 'time') http://xarray.pydata.org/en/stable/dask.html#automatic-parallelization

Some other comments on my, and possibly others', points of confusion.

  1. I'm not sure what a gufunc is, and if this is different than a ufunc (see the spearman_correlation function)
  2. After rereading both pages and numpy docs to understand universal functions, I have some intuition about what input_core_dims does, but I still don't have a great enough understanding to know how to use apply_ufunc to operate across 3D arrays that are chunked by time or space.
  3. The api reference for apply_ufunc renders such that some arg names have no whitespace between the arg type. http://xarray.pydata.org/en/stable/generated/xarray.apply_ufunc.html

  4. apply_ufunc seems to have the flexibility to support operations that output DataArrays of reduced shape, with arguments named like output_core_dims and exclude_dims. However, I tried to use it with a custom function that takes as input a single 3D image ('x', 'y', 'band') in my time series and returns a tuple of an intercept and slope computed from regressing the blue and red bands of that image. I tried various arguments but kept running into errors. I think an example that shows how to use apply_ufunc where the output has a different, reduced shape than any of the inputs would be valuable.

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
884099651 https://github.com/pydata/xarray/issues/2808#issuecomment-884099651 https://api.github.com/repos/pydata/xarray/issues/2808 IC_kwDOAMm_X840skpD stale[bot] 26384082 2021-07-21T11:00:50Z 2021-07-21T11:00:50Z NONE

In order to maintain a list of currently relevant issues, we mark issues as stale after a period of inactivity

If this issue remains relevant, please comment here or remove the stale label; otherwise it will be marked as closed automatically

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
520511588 https://github.com/pydata/xarray/issues/2808#issuecomment-520511588 https://api.github.com/repos/pydata/xarray/issues/2808 MDEyOklzc3VlQ29tbWVudDUyMDUxMTU4OA== rbavery 22258697 2019-08-12T17:09:26Z 2019-08-12T17:09:26Z NONE

I'd be interested in contributing an example on how to apply a function to each image in a time series within a DataArray, but I can't get my function to be applied. Details are in https://stackoverflow.com/questions/57419541/how-to-calculate-histogram-bins-for-each-image-in-an-xarray-dataarray-time-serie

Maybe we could include apply_ufunc examples on this issue or another github issue?

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
496876520 https://github.com/pydata/xarray/issues/2808#issuecomment-496876520 https://api.github.com/repos/pydata/xarray/issues/2808 MDEyOklzc3VlQ29tbWVudDQ5Njg3NjUyMA== apatlpo 11750960 2019-05-29T10:16:56Z 2019-05-29T10:16:56Z CONTRIBUTOR

I have ended up using apply_ufunc at several occasions and have developed a love/hate relationship with it. Often it turned out to be the simplest and most powerful option ... once I figured how to use it.

So thumbs up for an improved documentation.

Undertaking this task seems like a daunting one to me however, mostly because there are many different ways of using apply_ufunc I am not familiar with. Maybe it's the case for other users as well ...?

If this is the case, shouldn't we 1/ gather clean versions of our examples in a temporary place, 2/ sort these examples, and 3/ consider pushing it as a doc ?

{
    "total_count": 4,
    "+1": 4,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430
472553694 https://github.com/pydata/xarray/issues/2808#issuecomment-472553694 https://api.github.com/repos/pydata/xarray/issues/2808 MDEyOklzc3VlQ29tbWVudDQ3MjU1MzY5NA== shoyer 1217238 2019-03-13T18:40:47Z 2019-03-13T18:40:47Z MEMBER

I agree, this is a powerful but complex function. Probably the best approach is a longer tutorial (e.g., on a dedicated docs page), including even more examples.

Contributions would be very welcome here!

{
    "total_count": 9,
    "+1": 9,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Improving documentation on `apply_ufunc` 420584430

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
    ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
    ON [issue_comments] ([user]);
Powered by Datasette · Queries took 16.482ms · About: xarray-datasette