issue_comments
12 rows where user = 5637662 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: issue_url, created_at (date), updated_at (date)
user 1
- dschwoerer · 12 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
1467929278 | https://github.com/pydata/xarray/issues/2227#issuecomment-1467929278 | https://api.github.com/repos/pydata/xarray/issues/2227 | IC_kwDOAMm_X85XftK- | dschwoerer 5637662 | 2023-03-14T11:32:10Z | 2023-03-14T11:32:10Z | CONTRIBUTOR | I see, they are not the same - the slow one is still a dask array, the other one is not:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Slow performance of isel 331668890 | |
1463894170 | https://github.com/pydata/xarray/issues/2227#issuecomment-1463894170 | https://api.github.com/repos/pydata/xarray/issues/2227 | IC_kwDOAMm_X85XQUCa | dschwoerer 5637662 | 2023-03-10T14:36:43Z | 2023-03-10T14:36:43Z | CONTRIBUTOR | I just changed
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Slow performance of isel 331668890 | |
1300201799 | https://github.com/pydata/xarray/pull/7209#issuecomment-1300201799 | https://api.github.com/repos/pydata/xarray/issues/7209 | IC_kwDOAMm_X85Nf4FH | dschwoerer 5637662 | 2022-11-02T11:51:50Z | 2022-11-02T11:51:50Z | CONTRIBUTOR | The change does matter - but deep copies are still much more expensive than they used to be (as to be expected, I guess) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Optimize some copying 1421441672 | |
1290161405 | https://github.com/pydata/xarray/issues/7181#issuecomment-1290161405 | https://api.github.com/repos/pydata/xarray/issues/7181 | IC_kwDOAMm_X85M5kz9 | dschwoerer 5637662 | 2022-10-25T08:12:05Z | 2022-10-25T08:12:05Z | CONTRIBUTOR | Indeed, it does help. In 6 hours the CI completed 50% of the tests, compared to 17%. This however still very much slower than before, where we finished in around half an hour - so around 24x slower ... |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 2022.10.0 much slower then 2022.6.0 1412895383 | |
1283740282 | https://github.com/pydata/xarray/issues/7181#issuecomment-1283740282 | https://api.github.com/repos/pydata/xarray/issues/7181 | IC_kwDOAMm_X85MhFJ6 | dschwoerer 5637662 | 2022-10-19T09:57:47Z | 2022-10-19T09:57:47Z | CONTRIBUTOR | A call graph was posted in the referenced thread: https://github.com/boutproject/xBOUT/pull/252#issuecomment-1282222985 https://user-images.githubusercontent.com/1486942/196415148-ca7ea730-34f6-4622-8f0c-1e98d8b06e26.svg |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 2022.10.0 much slower then 2022.6.0 1412895383 | |
912636489 | https://github.com/pydata/xarray/issues/5762#issuecomment-912636489 | https://api.github.com/repos/pydata/xarray/issues/5762 | IC_kwDOAMm_X842ZbpJ | dschwoerer 5637662 | 2021-09-03T15:49:40Z | 2021-09-03T15:49:40Z | CONTRIBUTOR | I tried it with master, and it failed. Trying with main worked :-D I think there will be cases where the data is not suitable for plotting, where the new error will be less clear than the old one, but I still think that would be overall an improvement. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Plotting of labelled data fails 987551524 | |
912630631 | https://github.com/pydata/xarray/pull/5763#issuecomment-912630631 | https://api.github.com/repos/pydata/xarray/issues/5763 | IC_kwDOAMm_X842ZaNn | dschwoerer 5637662 | 2021-09-03T15:40:59Z | 2021-09-03T15:40:59Z | CONTRIBUTOR | I think there are several options:
Which of these options would you prefer? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
remove _ensure_plottable 987559143 | |
843971807 | https://github.com/pydata/xarray/issues/4156#issuecomment-843971807 | https://api.github.com/repos/pydata/xarray/issues/4156 | MDEyOklzc3VlQ29tbWVudDg0Mzk3MTgwNw== | dschwoerer 5637662 | 2021-05-19T10:33:08Z | 2021-05-19T10:33:08Z | CONTRIBUTOR | I have hacked something that does support the reading and writing of sparse arrays to a netcdf file, however I didn't know how and where to put this within xarray. ``` def ds_to_netcdf(ds, fn): dsorg = ds ds = dsorg.copy() for v in ds: if hasattr(ds[v].data, "nnz") and ( hasattr(ds[v].data, "to_coo") or hasattr(ds[v].data, "linear_loc") ): coord = f"{v}_xarray_index" assert coord not in ds data = ds[v].data if hasattr(data, "to_coo"): data = data.to_coo() ds[coord] = coord, data.linear_loc() dims = ds[v].dims ds[coord].attrs["compress"] = " ".join(dims) at = ds[v].attrs ds[v] = coord, data.data ds[v].attrs = at ds[v].attrs["fill_value"] = str(data.fill_value) for d in dims: if d not in ds: ds[f"_len{d}"] = len(dsorg[d])
``` ``` def xr_open_dataset(fn): ds = xr.open_dataset(fn)
``` Has there been any progress since last year? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
writing sparse to netCDF 638947370 | |
825664534 | https://github.com/pydata/xarray/pull/5207#issuecomment-825664534 | https://api.github.com/repos/pydata/xarray/issues/5207 | MDEyOklzc3VlQ29tbWVudDgyNTY2NDUzNA== | dschwoerer 5637662 | 2021-04-23T13:37:53Z | 2021-04-23T13:37:53Z | CONTRIBUTOR | I have now changed so that several wrapped functions preserve the data. It is more generic, and hopefully still readable. The flag might also be called |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Skip mean over empty axis 865002281 | |
788123029 | https://github.com/pydata/xarray/issues/4975#issuecomment-788123029 | https://api.github.com/repos/pydata/xarray/issues/4975 | MDEyOklzc3VlQ29tbWVudDc4ODEyMzAyOQ== | dschwoerer 5637662 | 2021-03-01T17:20:27Z | 2021-03-01T17:20:27Z | CONTRIBUTOR | Thanks, it is indeed fixed in 070d815 :+1: Should I close #4978 ? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
scatter plot with row or col gets hue wrong 818944970 | |
788052130 | https://github.com/pydata/xarray/issues/4885#issuecomment-788052130 | https://api.github.com/repos/pydata/xarray/issues/4885 | MDEyOklzc3VlQ29tbWVudDc4ODA1MjEzMA== | dschwoerer 5637662 | 2021-03-01T15:47:52Z | 2021-03-01T15:47:52Z | CONTRIBUTOR | I tried this:
However, that breaks ```diff --- a/xarray/core/duck_array_ops.py +++ b/xarray/core/duck_array_ops.py @@ -537,6 +537,11 @@ def mean(array, axis=None, skipna=None, **kwargs): dtypes""" from .common import _contains_cftime_datetimes
Should I open a PR? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Dataset.mean changes variables without specified dimension 805389572 | |
689508449 | https://github.com/pydata/xarray/issues/3279#issuecomment-689508449 | https://api.github.com/repos/pydata/xarray/issues/3279 | MDEyOklzc3VlQ29tbWVudDY4OTUwODQ0OQ== | dschwoerer 5637662 | 2020-09-09T11:46:09Z | 2020-09-09T11:46:09Z | CONTRIBUTOR | Very useful :+1:
I would add:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Feature request: vector cross product 489034521 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [issue] INTEGER REFERENCES [issues]([id]) ); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);
issue 10