issues
2 rows where state = "open" and user = 9312831 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1206634329 | I_kwDOAMm_X85H68dZ | 6493 | boundary conditions for differentiate() | miniufo 9312831 | open | 0 | 9 | 2022-04-18T04:07:32Z | 2022-04-26T14:48:33Z | NONE | Is your feature request related to a problem?I need to take centered finite difference of Commonly used BCs are:
1. Describe the solution you'd likeThe implementation of padded with BCs into N+2data_pad = pad_BCs(data, type='periodic') it is safe to take finite differencefor i in range(len(data)) diff[i] = data_pad [i+1] - data_pad [i-1] ``` The Then we can call:
Describe alternatives you've consideredNo response Additional contextI am not clear how |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/6493/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
607718350 | MDU6SXNzdWU2MDc3MTgzNTA= | 4011 | missing empty group when iterate over groupby_bins | miniufo 9312831 | open | 0 | 4 | 2020-04-27T17:22:31Z | 2022-04-09T03:08:14Z | NONE | When I try to iterate over the object one of these bins will be emptybins = [0,4,5] grouped = array.groupby_bins('dim_0', bins) for i, group in enumerate(grouped): print(str(i)+' '+group) ``` When a bin contains no samples (bin of (4, 5]), the empty group will be dropped. Then how to iterate over the full bins even when some bins contain nothing? I've read this related issue #1019. But my case here need the correct order in grouped and empty groups need to be iterated over. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/4011/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]);