issue_comments
7 rows where author_association = "MEMBER" and issue = 29136905 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Implement DataArray.idxmax() · 7 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
598493015 | https://github.com/pydata/xarray/issues/60#issuecomment-598493015 | https://api.github.com/repos/pydata/xarray/issues/60 | MDEyOklzc3VlQ29tbWVudDU5ODQ5MzAxNQ== | shoyer 1217238 | 2020-03-13T00:43:48Z | 2020-03-13T00:43:48Z | MEMBER |
e.g., |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement DataArray.idxmax() 29136905 | |
598487450 | https://github.com/pydata/xarray/issues/60#issuecomment-598487450 | https://api.github.com/repos/pydata/xarray/issues/60 | MDEyOklzc3VlQ29tbWVudDU5ODQ4NzQ1MA== | mathause 10194086 | 2020-03-13T00:16:32Z | 2020-03-13T00:16:32Z | MEMBER | How would
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement DataArray.idxmax() 29136905 | |
457059732 | https://github.com/pydata/xarray/issues/60#issuecomment-457059732 | https://api.github.com/repos/pydata/xarray/issues/60 | MDEyOklzc3VlQ29tbWVudDQ1NzA1OTczMg== | shoyer 1217238 | 2019-01-24T04:05:17Z | 2019-01-24T04:05:17Z | MEMBER | This is still relevant |
{ "total_count": 5, "+1": 5, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement DataArray.idxmax() 29136905 | |
276543337 | https://github.com/pydata/xarray/issues/60#issuecomment-276543337 | https://api.github.com/repos/pydata/xarray/issues/60 | MDEyOklzc3VlQ29tbWVudDI3NjU0MzMzNw== | shoyer 1217238 | 2017-02-01T01:01:27Z | 2017-02-01T01:01:27Z | MEMBER |
Indeed,
Yes, ideally we would detect the dtype and find an appropriate fill or minimum value, similar to |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement DataArray.idxmax() 29136905 | |
276538303 | https://github.com/pydata/xarray/issues/60#issuecomment-276538303 | https://api.github.com/repos/pydata/xarray/issues/60 | MDEyOklzc3VlQ29tbWVudDI3NjUzODMwMw== | shoyer 1217238 | 2017-02-01T00:30:32Z | 2017-02-01T00:30:32Z | MEMBER | Yes, that looks pretty reasonable. Two minor concerns:
- |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement DataArray.idxmax() 29136905 | |
276235524 | https://github.com/pydata/xarray/issues/60#issuecomment-276235524 | https://api.github.com/repos/pydata/xarray/issues/60 | MDEyOklzc3VlQ29tbWVudDI3NjIzNTUyNA== | shoyer 1217238 | 2017-01-31T00:21:35Z | 2017-01-31T00:21:35Z | MEMBER |
I just merged #1237 -- see if it works with that.
Yeah, that's not a problem here, only for the
This behavior for nanargmax is unfortunate. The "right" behavior for xarray is probably to use |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement DataArray.idxmax() 29136905 | |
275960531 | https://github.com/pydata/xarray/issues/60#issuecomment-275960531 | https://api.github.com/repos/pydata/xarray/issues/60 | MDEyOklzc3VlQ29tbWVudDI3NTk2MDUzMQ== | shoyer 1217238 | 2017-01-30T00:54:09Z | 2017-01-30T17:30:48Z | MEMBER | See http://stackoverflow.com/questions/40179593/how-to-get-the-coordinates-of-the-maximum-in-xarray for examples of how to do this with the current version of xarray. @MaximilianR's answer using @jcmgray Your proposal looks pretty close to me. But to handle higher dimension arrays, instead of I think something like the following would work: ```python def _index_from_1d_array(array, indices): return array[indices,] def gufunc_idxmax(x, y, axis=None): # note: y is always a numpy.ndarray, because IndexVariable objects # always have their data loaded into memory indx = argmax(x, axis) func = functools.partial(_index_from_1d_array, y)
``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement DataArray.idxmax() 29136905 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);
user 2