issues
8 rows where "updated_at" is on date 2024-03-13 and user = 14371165 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: comments, draft, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
962647570 | MDExOlB1bGxSZXF1ZXN0NzA1NDA2NDY0 | 5678 | Add typing to the OPTIONS dict | Illviljan 14371165 | closed | 0 | 11 | 2021-08-06T11:21:02Z | 2024-03-13T21:45:54Z | 2021-08-19T22:15:23Z | MEMBER | 0 | pydata/xarray/pulls/5678 | This adds typing to the dict values. Using variables as keys is apparently not permitted by mypy so that part has been removed. Attempts to fix issues found in #5662. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/5678/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1684281101 | PR_kwDOAMm_X85PKWFR | 7787 | Allow the label run-upstream to run upstream CI | Illviljan 14371165 | closed | 0 | 6 | 2023-04-26T05:07:44Z | 2024-03-13T21:44:50Z | 2023-05-01T19:12:26Z | MEMBER | 0 | pydata/xarray/pulls/7787 | This PR makes it easier to trigger the upstream CI and creates a mypy test for upstream as well, but only when adding this label so that it doesn't mess with the scheduled runs and those results. Noticed the need in #7786. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/7787/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1418830429 | PR_kwDOAMm_X85BT_a6 | 7194 | Align naming convention with plt.subplots | Illviljan 14371165 | closed | 0 | 1 | 2022-10-21T20:31:34Z | 2024-03-13T21:44:17Z | 2022-10-23T11:58:12Z | MEMBER | 0 | pydata/xarray/pulls/7194 | I noticed that the normal notation for |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/7194/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
807939559 | MDExOlB1bGxSZXF1ZXN0NTczMDc1Mzkw | 4909 | Add dataarray scatter with 3d support | Illviljan 14371165 | closed | 0 | 12 | 2021-02-14T11:15:50Z | 2024-03-13T21:43:14Z | 2021-07-17T21:07:31Z | MEMBER | 0 | pydata/xarray/pulls/4909 |
Add scatter plots for dataarrays. Then later remove the dataset version and replace it with a thin wrapper in a similar fashion to #4820. New stuff:
- [x] Legend now displays colors and sizes in a similar fashion to Seaborn.
- [x] New parameter Example:
Using |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/4909/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1474717029 | PR_kwDOAMm_X85EPeqM | 7353 | Add python 3.11 to CI | Illviljan 14371165 | closed | 0 | 9 | 2022-12-04T11:12:01Z | 2024-03-13T21:43:10Z | 2023-05-28T09:58:40Z | MEMBER | 1 | pydata/xarray/pulls/7353 | Waiting on: - https://github.com/numba/numba/issues/8304 - https://github.com/numba/numba/issues/8841 - https://github.com/zarr-developers/numcodecs/issues/377 - https://github.com/Unidata/netcdf4-python/issues/1204 - https://github.com/h5py/h5py/issues/2146
Feel free to push to this PR if you want. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/7353/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1803788143 | PR_kwDOAMm_X85VdjgR | 7986 | Add new what's new section | Illviljan 14371165 | closed | 0 | 0 | 2023-07-13T21:29:01Z | 2024-03-13T21:43:09Z | 2023-07-13T21:30:07Z | MEMBER | 0 | pydata/xarray/pulls/7986 | Add a new what's new section |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/7986/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1991435225 | PR_kwDOAMm_X85fV3DW | 8449 | Use concise date format when plotting | Illviljan 14371165 | closed | 0 | 2 | 2023-11-13T20:32:22Z | 2024-03-13T21:41:34Z | 2023-11-21T19:26:24Z | MEMBER | 0 | pydata/xarray/pulls/8449 |
```python import matplotlib.pyplot as plt import xarray as xr airtemps = xr.tutorial.open_dataset("air_temperature") air = airtemps.air - 273.15 air1d = air.isel(lat=10, lon=10) plt.figure()
air1d.plot()
```
Before:
After:
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/8449/reactions", "total_count": 2, "+1": 2, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1761952309 | PR_kwDOAMm_X85TQlL1 | 7925 | Remove hue_style from plot1d docstring | Illviljan 14371165 | closed | 0 | 9 | 2023-06-17T18:33:11Z | 2024-03-13T21:40:43Z | 2023-07-13T23:17:48Z | MEMBER | 0 | pydata/xarray/pulls/7925 |
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/7925/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "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]);