issue_comments
2 rows where issue = 1292284929 and user = 2448579 sorted by updated_at descending
This data as json, CSV (advanced)
issue 1
- What should `Dataset.count` return for missing dims? · 2 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1176959116 | https://github.com/pydata/xarray/issues/6749#issuecomment-1176959116 | https://api.github.com/repos/pydata/xarray/issues/6749 | IC_kwDOAMm_X85GJviM | dcherian 2448579 | 2022-07-07T02:05:06Z | 2022-07-07T02:05:06Z | MEMBER | We discussed:
1. dropping variables without the dimension
2. Return ds.sizes["x"] by broadcasting For the other reductions ``` python import numpy as np import xarray as xr from xarray.core.duck_array_ops import count ds = xr.Dataset({"a": ("x", [1, 2, 3]), "b": ("y", [4, 5])}) for func in [np.nansum, np.nanprod, np.nanmean, np.nanvar, np.nanstd, count]: print(f"{func.name!s}({ds.b.data}, axis=()) = {func(ds.b.data, axis=())}") ``` gives
I guess the output for nansum, nanprod doesn't match what you would get by broadcasting along the absent dimension. |
{
"total_count": 1,
"+1": 1,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
What should `Dataset.count` return for missing dims? 1292284929 | |
| 1175235698 | https://github.com/pydata/xarray/issues/6749#issuecomment-1175235698 | https://api.github.com/repos/pydata/xarray/issues/6749 | IC_kwDOAMm_X85GDKxy | dcherian 2448579 | 2022-07-05T16:09:55Z | 2022-07-05T16:09:55Z | MEMBER | This is quite confusing and I doubt it's intentional. I would've expected The final value is the result of ``` python import numpy as np from xarray.core.duck_array_ops import isnull np.sum(np.logical_not(isnull(ds.b.data)), axis=()) np.sum([True, True], axis=())``` What happens when you call a ufunc with an empty axis tuple? I bet this is just casting bool to int. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
What should `Dataset.count` return for missing dims? 1292284929 |
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]);
user 1