issues
3 rows where state = "open", type = "pull" and user = 39069044 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2220689594 | PR_kwDOAMm_X85rcmw1 | 8904 | Handle extra indexes for zarr region writes | slevang 39069044 | open | 0 | 8 | 2024-04-02T14:34:00Z | 2024-04-03T19:20:37Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/8904 |
Small follow up to #8877. If we're going to drop the indices anyways for region writes, we may as well not raise if they are still in the dataset. This makes the user experience of region writes simpler: ```python ds = xr.tutorial.open_dataset("air_temperature") ds.to_zarr("test.zarr") region = {"time": slice(0, 10)} This fails unless we remember to ds.drop_vars(["lat", "lon"])ds.isel(**region).to_zarr("test.zarr", region=region) ``` I find this annoying because I often have a dataset with a bunch of unrelated indexes and have to remember which ones to drop, or use some verbose cc @dcherian |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/8904/reactions",
"total_count": 1,
"+1": 1,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull | ||||||
| 1359368857 | PR_kwDOAMm_X84-PSvu | 6978 | fix passing of curvefit kwargs | slevang 39069044 | open | 0 | 5 | 2022-09-01T20:26:01Z | 2022-10-11T18:50:45Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/6978 |
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/6978/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull | ||||||
| 1043746973 | PR_kwDOAMm_X84uC1vs | 5933 | Reimplement `.polyfit()` with `apply_ufunc` | slevang 39069044 | open | 0 | 6 | 2021-11-03T15:29:58Z | 2022-10-06T21:42:09Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/5933 |
Reimplement There is a bunch of fiddly code here for handling the differing outputs from A few minor departures from the previous implementation:
1. The No new tests have been added since the previous suite was fairly comprehensive. Would be great to get some performance reports on real-world data such as the climate model detrending application in #5629. |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/5933/reactions",
"total_count": 2,
"+1": 1,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 1,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull |
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]);