issues
5 rows where comments = 5, state = "open" and user = 14808389 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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2234142680 | PR_kwDOAMm_X85sK0g8 | 8923 | `"source"` encoding for datasets opened from `fsspec` objects | keewis 14808389 | open | 0 | 5 | 2024-04-09T19:12:45Z | 2024-04-23T16:54:09Z | MEMBER | 0 | pydata/xarray/pulls/8923 | When opening files from path-like objects ( In this PR, I'm extracting the  If this sounds like a good idea, I'll update the documentation of the  
  | 
                
                    {
    "url": "https://api.github.com/repos/pydata/xarray/issues/8923/reactions",
    "total_count": 2,
    "+1": 2,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
} | 
                
                    xarray 13221727 | pull | ||||||
| 683142059 | MDU6SXNzdWU2ODMxNDIwNTk= | 4361 | restructure the contributing guide | keewis 14808389 | open | 0 | 5 | 2020-08-20T22:51:39Z | 2023-03-31T17:39:00Z | MEMBER | From #4355 @max-sixty: 
 We could also add a docstring guide since the   | 
                
                    {
    "url": "https://api.github.com/repos/pydata/xarray/issues/4361/reactions",
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
} | 
                
                    xarray 13221727 | issue | ||||||||
| 789106802 | MDU6SXNzdWU3ODkxMDY4MDI= | 4825 | clean up the API for renaming and changing dimensions / coordinates | keewis 14808389 | open | 0 | 5 | 2021-01-19T15:11:55Z | 2021-09-10T15:04:14Z | MEMBER | From #4108: I wonder if it would be better to first "reorganize" all of the existing functions: we currently have  I believe we currently have these use cases (not sure if that list is complete, though):
- rename a  Sometimes, some of these can be emulated by combinations of others, for example: ```python x is a dimension without coordinatesassert_identical(ds.set_index({"x": "b"}), ds.swap_dims({"x": "b"}).rename({"b": "x"}))
assert_identical(ds.swap_dims({"x": "b"}), ds.set_index({"x": "b"}).rename({"x": "b"}))
 In any case I think we should add a guide which explains which method to pick in which situation (or extend  Originally posted by @keewis in https://github.com/pydata/xarray/issues/4108#issuecomment-761907785  | 
                
                    {
    "url": "https://api.github.com/repos/pydata/xarray/issues/4825/reactions",
    "total_count": 2,
    "+1": 2,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
} | 
                
                    xarray 13221727 | issue | ||||||||
| 791277757 | MDU6SXNzdWU3OTEyNzc3NTc= | 4837 | expose _to_temp_dataset / _from_temp_dataset as semi-public API? | keewis 14808389 | open | 0 | 5 | 2021-01-21T16:11:32Z | 2021-01-22T02:07:08Z | MEMBER | When writing accessors which behave the same for both  Otherwise I guess it would be possible to use
  | 
                
                    {
    "url": "https://api.github.com/repos/pydata/xarray/issues/4837/reactions",
    "total_count": 2,
    "+1": 2,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
} | 
                
                    xarray 13221727 | issue | ||||||||
| 517195073 | MDU6SXNzdWU1MTcxOTUwNzM= | 3483 | assign_coords with mixed DataArray / array args removes coords | keewis 14808389 | open | 0 | 5 | 2019-11-04T14:38:40Z | 2019-11-07T15:46:15Z | MEMBER | I'm not sure if using  
 I would expect the result to be the same regardless of the type of the new coords.  | 
                
                    {
    "url": "https://api.github.com/repos/pydata/xarray/issues/3483/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]);