issue_comments
4 rows where issue = 494906646 and user = 35968931 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- xr.combine_nested() fails when passed nested DataSets · 4 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
535061773 | https://github.com/pydata/xarray/issues/3315#issuecomment-535061773 | https://api.github.com/repos/pydata/xarray/issues/3315 | MDEyOklzc3VlQ29tbWVudDUzNTA2MTc3Mw== | TomNicholas 35968931 | 2019-09-25T14:53:34Z | 2019-09-25T15:00:27Z | MEMBER | Really? Okay, so that means that currently we don't treat a named DataArray and a single-variable Dataset as if they are the same. For example I would have expected these two operations to give the same result:
xarray/core/utils.py:385: KeyError ``` Is this what we want to do? Surely the first one should also fail, else this is counter-intuitive. I think of a named DataArray and a single-variable Dataset as being the same thing, just a single physical variable? @shoyer am I misunderstanding xarray's data model here? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.combine_nested() fails when passed nested DataSets 494906646 | |
535010456 | https://github.com/pydata/xarray/issues/3315#issuecomment-535010456 | https://api.github.com/repos/pydata/xarray/issues/3315 | MDEyOklzc3VlQ29tbWVudDUzNTAxMDQ1Ng== | TomNicholas 35968931 | 2019-09-25T13:00:13Z | 2019-09-25T13:00:13Z | MEMBER | Okay something has definitely gone wrong here. My intention with that test was to check that the order of operations doesn't matter, but you're right that the test as written makes no sense. It would probably be a good idea to remove this test and check that property correctly by adding a second assert to the (poorly-named) Prove it works symmetricallydatasets = [[ds(0), ds(3)], [ds(1), ds(4)], [ds(2), ds(5)]] result = combine_nested(datasets, concat_dim=["dim2", "dim1"]) assert_equal(result, expected) ``` (This passes fine) However, that still leaves the question of why is this nonsensical test passing? I think it's because result = concat([da1, da2], dim="x")
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.combine_nested() fails when passed nested DataSets 494906646 | |
532794909 | https://github.com/pydata/xarray/issues/3315#issuecomment-532794909 | https://api.github.com/repos/pydata/xarray/issues/3315 | MDEyOklzc3VlQ29tbWVudDUzMjc5NDkwOQ== | TomNicholas 35968931 | 2019-09-18T17:53:43Z | 2019-09-18T17:53:43Z | MEMBER | Hmm I can look at this properly at the weekend but in the meantime the logic was motivated by discussion in #2777. If the test doesn't make sense in that context then it's not right. On Wed, 18 Sep 2019, 18:16 Deepak Cherian, notifications@github.com wrote:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.combine_nested() fails when passed nested DataSets 494906646 | |
532778982 | https://github.com/pydata/xarray/issues/3315#issuecomment-532778982 | https://api.github.com/repos/pydata/xarray/issues/3315 | MDEyOklzc3VlQ29tbWVudDUzMjc3ODk4Mg== | TomNicholas 35968931 | 2019-09-18T17:11:42Z | 2019-09-18T17:11:42Z | MEMBER | Sorry when you say expected result are you referring to a particular unit test? On Wed, 18 Sep 2019, 18:07 Deepak Cherian, notifications@github.com wrote:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.combine_nested() fails when passed nested DataSets 494906646 |
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 1