issues
3 rows where comments = 5, repo = 13221727 and user = 1200058 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
712217045 | MDU6SXNzdWU3MTIyMTcwNDU= | 4476 | Reimplement GroupBy.argmax | Hoeze 1200058 | open | 0 | 5 | 2020-09-30T19:25:22Z | 2023-03-03T06:59:40Z | NONE | Please implement Is your feature request related to a problem? Please describe.
Observed:
AttributeError Traceback (most recent call last) <ipython-input-84-15c199b0f7d4> in <module> ----> 1 da.groupby("g").argmax(dim="t") AttributeError: 'DataArrayGroupBy' object has no attribute 'argmax' ``` Describe the solution you'd like
Expected: Vector of length Workaround:
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/4476/reactions", "total_count": 2, "+1": 2, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
510844652 | MDU6SXNzdWU1MTA4NDQ2NTI= | 3432 | Scalar slice of MultiIndex is turned to tuples | Hoeze 1200058 | closed | 0 | 5 | 2019-10-22T18:55:52Z | 2022-03-17T17:11:41Z | 2022-03-17T17:11:41Z | NONE | Today I updated to I tried to select one observation of the following dataset:
As you can see, observations is now a tuple of Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3432/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
528060435 | MDU6SXNzdWU1MjgwNjA0MzU= | 3570 | fillna on dataset converts all variables to float | Hoeze 1200058 | open | 0 | 5 | 2019-11-25T12:39:49Z | 2020-09-15T15:35:04Z | NONE | MCVE Code Sample
Expected Output
Problem DescriptionI'd like to use Would it be possible to apply Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3570/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]);