issues
3 rows where user = 12862013 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
666880880 | MDU6SXNzdWU2NjY4ODA4ODA= | 4278 | Skipna not working in DataArray.rolling.mean | mark-boer 12862013 | closed | 0 | 5 | 2020-07-28T08:32:41Z | 2022-09-06T10:39:02Z | 2020-07-29T11:17:23Z | CONTRIBUTOR | What happened: I tried to calculate a rolling mean or median, ignoring nan's Minimal Complete Verifiable Example: ```python
I expected this array to have have no nans. There is a simple workaround that does give the answer I was looking for: ```python
Anything else we need to know?: Love the project ;-) Environment: Output of <tt>xr.show_versions()</tt>INSTALLED VERSIONS ------------------ commit: None python: 3.8.3 (default, May 16 2020, 07:08:28) [GCC 8.3.0] python-bits: 64 OS: Linux OS-release: 4.19.76-linuxkit machine: x86_64 processor: byteorder: little LC_ALL: None LANG: C.UTF-8 LOCALE: en_US.UTF-8 libhdf5: None libnetcdf: None xarray: 0.16.0 pandas: 1.0.5 numpy: 1.19.1 scipy: None netCDF4: None pydap: None h5netcdf: None h5py: None Nio: None zarr: None cftime: None nc_time_axis: None PseudoNetCDF: None rasterio: None cfgrib: None iris: None bottleneck: None dask: None distributed: None matplotlib: None cartopy: None seaborn: None numbagg: None pint: None setuptools: 46.4.0 pip: 20.1.1 conda: None pytest: None IPython: 7.16.1 sphinx: None |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/4278/reactions", "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
532940062 | MDExOlB1bGxSZXF1ZXN0MzQ5MDk3Mzgz | 3596 | Add DataArray.pad, Dataset.pad, Variable.pad | mark-boer 12862013 | closed | 0 | 20 | 2019-12-04T21:18:41Z | 2020-03-21T11:50:44Z | 2020-03-19T14:41:50Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/3596 | Hello all, This is my first PR to a pydata project. This pull request is still very much a work in progress and I could really use your input on a couple of things.
Dataset.pad is coming up. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3596/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
546791416 | MDU6SXNzdWU1NDY3OTE0MTY= | 3671 | rolling.construct alignment | mark-boer 12862013 | closed | 0 | 4 | 2020-01-08T11:03:28Z | 2020-01-11T02:24:21Z | 2020-01-11T02:24:21Z | CONTRIBUTOR | Hello xarray team I was trying to implement functionality similar to Scikit Image's view_as_windows, but I was having a hard time with the boundary conditions. I understand this request is very similar to rolling with periodic boundary conditions #2007. MCVE Code Sample```python
Expected OutputIt would be nice to be able to easily get an output of:
Possible workaroundsWith the upcoming features of pad (#3596) and rolling: periodic (#2011) it is actually not that hard to work around with: ```python arr.pad(x=(1,0)).rolling(x=2).construct("roll_x", stride=2).isel(x=slice(1,None)) orarr.roll(x=-1).rolling(x=2, boundary="periodic").construct("roll_x", stride=2) ``` IdeaWould it be possible to add a keyword argument to either |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3671/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]);