issues
5 rows where state = "closed" and user = 13205162 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: comments, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
420584430 | MDU6SXNzdWU0MjA1ODQ0MzA= | 2808 | Improving documentation on `apply_ufunc` | tomchor 13205162 | closed | 0 | 9 | 2019-03-13T16:03:37Z | 2022-04-27T20:09:06Z | 2022-04-27T20:09:06Z | CONTRIBUTOR | This is just a suggestion to improve the documentation on From personal experience, every time I have to use it I get confused and it takes me a long time to figure out what important keywords like PS: I honestly still don't quite understand what most (if not all) of the keywords do, so I'm not the man for the job. EDIT An example of something that could be improved upon is this function taken from the documentation:
It's really easy to understand, but if I want to use it with more than one axis it doesn't work:
And I have no idea how to make the second, more general example work. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2808/reactions", "total_count": 5, "+1": 5, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
963089887 | MDU6SXNzdWU5NjMwODk4ODc= | 5681 | Complex LaTeX expressions in `long_name`s aren't rendered correctly when plotting | tomchor 13205162 | closed | 0 | 5 | 2021-08-06T22:54:11Z | 2021-11-28T17:07:18Z | 2021-11-28T17:07:18Z | CONTRIBUTOR | What happened: When I try to give a variable a What you expected to happen: I expected the name to get rendered by latex Minimal Complete Verifiable Example: In the example below I'm plotting a variable with a complex ```python import numpy as np from matplotlib import pyplot as plt import xarray as xr da = xr.DataArray(range(5), dims="x", coords = dict(x=range(5))) name = r"$Ra_s = \mathrm{mean}(\epsilon_k) / \mu M^2_\infty$" da.x.attrs = dict(long_name = name) da.plot() plt.figure() plt.plot(range(5)) plt.xlabel(name) ``` Anything else we need to know?: Environment: Output of <tt>xr.show_versions()</tt>INSTALLED VERSIONS ------------------ commit: None python: 3.9.2 (default, Mar 3 2021, 20:02:32) [GCC 7.3.0] python-bits: 64 OS: Linux OS-release: 5.10.53-1-MANJARO machine: x86_64 processor: byteorder: little LC_ALL: None LANG: en_US.UTF-8 LOCALE: en_US.UTF-8 libhdf5: 1.10.6 libnetcdf: 4.6.1 xarray: 0.17.0 pandas: 1.2.3 numpy: 1.19.2 scipy: 1.5.3 netCDF4: 1.5.6 pydap: None h5netcdf: None h5py: None Nio: None zarr: None cftime: 1.2.1 nc_time_axis: None PseudoNetCDF: None rasterio: None cfgrib: None iris: None bottleneck: 1.3.2 dask: 2021.04.0 distributed: 2021.04.0 matplotlib: 3.3.4 cartopy: 0.18.0 seaborn: None numbagg: None pint: 0.17 setuptools: 52.0.0.post20210125 pip: 21.0.1 conda: None pytest: None IPython: 7.22.0 sphinx: None |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/5681/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
963239311 | MDExOlB1bGxSZXF1ZXN0NzA1ODk4MDcx | 5682 | Improves rendering of complex LaTeX expressions as `long_name`s when plotting | tomchor 13205162 | closed | 0 | 11 | 2021-08-07T14:18:16Z | 2021-11-28T17:06:49Z | 2021-08-17T02:29:54Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/5682 | This PR changes the function I tried to identify if it's a latex code if the string starts with
CC: @dcherian @Illviljan |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/5682/reactions", "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
310670696 | MDU6SXNzdWUzMTA2NzA2OTY= | 2035 | Manually subtracting two slices of DataArary always produces zero output | tomchor 13205162 | closed | 0 | 5 | 2018-04-03T02:22:00Z | 2019-01-22T22:44:43Z | 2019-01-22T22:44:43Z | CONTRIBUTOR | I have witnessing a weird behavior with xarray. Here's a MWE
Expected Output``` <xarray.DataArray (x: 5, y: 5, z: 4)> array([[[-0.22148 , 0.246586, 0.043931, -0.37468 ], [-0.522721, -0.016258, -0.386125, 0.932965], [-0.227799, -0.140233, 0.400886, -0.130469], [-0.04763 , 0.656787, -0.597745, 0.212088], [ 0.089159, 0.376483, -0.712572, 0.397021]],
Coordinates: * z (z) int64 1 2 3 4 * y (y) int64 0 1 2 3 4 * x (x) int64 0 1 2 3 4 ``` The output I'm getting is:```
<xarray.DataArray (x: 5, y: 5, z: 3)>
Coordinates: ``` Is there something I'm missing here or is this really the expected behavior? Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2035/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
341272087 | MDU6SXNzdWUzNDEyNzIwODc= | 2286 | Assembling a domain from smaller 2D patches using DataArray | tomchor 13205162 | closed | 0 | 1 | 2018-07-14T21:48:41Z | 2018-07-14T22:44:54Z | 2018-07-14T22:44:54Z | CONTRIBUTOR | This is based off of this question I posted in SO. Basically I have a huge 2D domain that is separated into a lot of smaller 2D domains (as ```python a=xr.DataArray(np.random.rand(4,4)+0, dims=("x", "y"), coords=dict(x=range(4), y=range(4))) b=xr.DataArray(np.random.rand(4,4)+1, dims=("x", "y"), coords=dict(x=range(4,8), y=range(4))) c=xr.DataArray(np.random.rand(4,4)+2, dims=("x", "y"), coords=dict(x=range(4,8), y=range(4,8))) d=xr.concat([a,b,c], dim="x") d.plot.imshow(x="x") ``` This is somewhat close to what I wanted, but since it only concatenates in one direction, the output is wrong. You can read the question I linked above for a more detail explanation with a figure. At this point I'm thinking that what I want is not possible with what's currently implemented in |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2286/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | 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]);