issues
5 rows where state = "open" and user = 3274 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: comments, created_at (date), updated_at (date)
id | node_id | number | title | user | state | locked | assignee | milestone | comments | created_at | updated_at ▲ | closed_at | author_association | active_lock_reason | draft | pull_request | body | reactions | performed_via_github_app | state_reason | repo | type |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
520137402 | MDU6SXNzdWU1MjAxMzc0MDI= | 3499 | Documentation Feature Request: Rolling and Coordinates | rpgoldman 3274 | open | 0 | 2 | 2019-11-08T17:24:40Z | 2022-04-29T17:39:44Z | CONTRIBUTOR | The documentation about iteration with We can also manually iterate through Rolling objects:
It would help to explain what sort of thing So I would suggest the two following improvements:
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3499/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
585323675 | MDU6SXNzdWU1ODUzMjM2NzU= | 3873 | Explanation of full DataFrame to Dataset translation | rpgoldman 3274 | open | 0 | 4 | 2020-03-20T20:57:38Z | 2020-03-20T23:13:25Z | CONTRIBUTOR | Using This Stack Exchange question and answer give part of the solution: https://stackoverflow.com/questions/59672658/reassigning-xarray-data-variable-to-xarray-coordinate This tells us how to turn some of the data variables in the translated data set into coordinates. But that's not the full solution, because we also need the coordinates to be applied to the data variables. Somehow we need to add the variables that are now coordinates as dimensions. This is probably somewhere in the docs, but it isn't pulled together into a big picture answer. It would be great if there was an end-to-end example of taking a pandas If that is in the online docs, I don't know how to find it. Thanks! |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3873/reactions", "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
511477827 | MDU6SXNzdWU1MTE0Nzc4Mjc= | 3437 | Request error handling in dataarray construction | rpgoldman 3274 | open | 0 | 4 | 2019-10-23T17:48:11Z | 2020-01-08T21:14:27Z | CONTRIBUTOR | When I have a bad dimension in an xarray I get this error:
Expected Outputwhat I would like to see is
The improvement I am asking for is here: https://github.com/pydata/xarray/blob/c8dac5866d2c54ee6b262b5060a701e0be1e40cb/xarray/core/dataarray.py#L368-L371 What I claim would be an improvement would be something like this:
I'm not an expert on python exception handling, so this is probably wrong. Problem DescriptionThe programmer cannot tell what variable causes the shape and dimension issue. Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3437/reactions", "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
546956885 | MDU6SXNzdWU1NDY5NTY4ODU= | 3672 | Feature request: pull StackExchange answer into "How Do I?" | rpgoldman 3274 | open | 0 | 1 | 2020-01-08T16:08:53Z | 2020-01-08T18:14:34Z | CONTRIBUTOR | There's a great answer to a reshaping question -- how do I subdivide a dimension -- in this StackExchange Q&A: https://stackoverflow.com/questions/43015638/xarray-reshape-data-split-dimension It would be great to get this moved into the "How do I?" section of the documentation. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3672/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
514191264 | MDU6SXNzdWU1MTQxOTEyNjQ= | 3461 | Poor error message on Dataset.sum(axis=...) | rpgoldman 3274 | open | 0 | 10 | 2019-10-29T20:09:51Z | 2019-11-18T01:24:56Z | CONTRIBUTOR | MCVE Code SampleI'm attaching the relevant
Instead of getting a sum (either across the data variables or across the dimension shared between the variables), I get the error in the title: It's possible that I am doing something wrong, and it is just the error message that is bad, and not the behavior. I don't know enough to tell. Expected OutputTBQH, I didn't know whether this would sum across the (single) dimension of this dataset, or if it would sum across the data variables along that dimension. I was experimenting to try to figure this out. What I am trying to do is sum across the data variables, "perpendicular" to a dimension, instead of along it. Problem DescriptionI assumed that summing across one of the axes would sum across the data variables, but perhaps that was a bad assumption. At any rate, the current behavior is undesirable. Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3461/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issues] ( [id] INTEGER PRIMARY KEY, [node_id] TEXT, [number] INTEGER, [title] TEXT, [user] INTEGER REFERENCES [users]([id]), [state] TEXT, [locked] INTEGER, [assignee] INTEGER REFERENCES [users]([id]), [milestone] INTEGER REFERENCES [milestones]([id]), [comments] INTEGER, [created_at] TEXT, [updated_at] TEXT, [closed_at] TEXT, [author_association] TEXT, [active_lock_reason] TEXT, [draft] INTEGER, [pull_request] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [state_reason] TEXT, [repo] INTEGER REFERENCES [repos]([id]), [type] TEXT ); CREATE INDEX [idx_issues_repo] ON [issues] ([repo]); CREATE INDEX [idx_issues_milestone] ON [issues] ([milestone]); CREATE INDEX [idx_issues_assignee] ON [issues] ([assignee]); CREATE INDEX [idx_issues_user] ON [issues] ([user]);