issue_comments
5 rows where issue = 528060435 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- fillna on dataset converts all variables to float · 5 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
692797144 | https://github.com/pydata/xarray/issues/3570#issuecomment-692797144 | https://api.github.com/repos/pydata/xarray/issues/3570 | MDEyOklzc3VlQ29tbWVudDY5Mjc5NzE0NA== | dcherian 2448579 | 2020-09-15T15:35:03Z | 2020-09-15T15:35:03Z | MEMBER |
This seems sensible; |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
fillna on dataset converts all variables to float 528060435 | |
692664177 | https://github.com/pydata/xarray/issues/3570#issuecomment-692664177 | https://api.github.com/repos/pydata/xarray/issues/3570 | MDEyOklzc3VlQ29tbWVudDY5MjY2NDE3Nw== | mathause 10194086 | 2020-09-15T11:50:11Z | 2020-09-15T11:50:11Z | MEMBER | There are 3 types of failures:
- non-lazy evaluation
- missing alignment (in merge)
- not raising So its not trivial...
```Python traceback
FAILED xarray/tests/test_dask.py::test_lazy_array_equiv_merge[no_conflicts] - RuntimeError: Too many computes. Total: 1 > max: 0.
FAILED xarray/tests/test_dataarray.py::TestReduce2D::test_idxmin[True-x2-minindex2-maxindex2-nanindex2] - RuntimeError: Too many computes. Total: 2 > max: 1.
FAILED xarray/tests/test_dataarray.py::TestReduce2D::test_idxmax[True-x2-minindex2-maxindex2-nanindex2] - RuntimeError: Too many computes. Total: 2 > max: 1.
FAILED xarray/tests/test_dataset.py::TestDataset::test_dask_is_lazy - xarray.tests.UnexpectedDataAccess: Tried accessing data
FAILED xarray/tests/test_merge.py::TestMergeMethod::test_merge_broadcast_equals - ValueError: applied function returned data with unexpected number of dimensions. Received 0 dimension(s) but expected 1 dim...
FAILED xarray/tests/test_units.py::TestDataArray::test_fillna[int64-python_scalar-no_unit] - Failed: DID NOT RAISE <class 'pint.errors.DimensionalityError'>
... more of those
```
Potentially this could also be fixed in |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
fillna on dataset converts all variables to float 528060435 | |
692652030 | https://github.com/pydata/xarray/issues/3570#issuecomment-692652030 | https://api.github.com/repos/pydata/xarray/issues/3570 | MDEyOklzc3VlQ29tbWVudDY5MjY1MjAzMA== | keewis 14808389 | 2020-09-15T11:22:08Z | 2020-09-15T11:22:08Z | MEMBER | yes, we would need to |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
fillna on dataset converts all variables to float 528060435 | |
692574610 | https://github.com/pydata/xarray/issues/3570#issuecomment-692574610 | https://api.github.com/repos/pydata/xarray/issues/3570 | MDEyOklzc3VlQ29tbWVudDY5MjU3NDYxMA== | mathause 10194086 | 2020-09-15T08:59:49Z | 2020-09-15T09:58:49Z | MEMBER | The problem is that xarray calls A possible workaround is to use |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
fillna on dataset converts all variables to float 528060435 | |
692609976 | https://github.com/pydata/xarray/issues/3570#issuecomment-692609976 | https://api.github.com/repos/pydata/xarray/issues/3570 | MDEyOklzc3VlQ29tbWVudDY5MjYwOTk3Ng== | mathause 10194086 | 2020-09-15T09:57:47Z | 2020-09-15T09:57:47Z | MEMBER | The straightforward idea unfortunately leads to some test failures. I.e. the following does not work: ```python def fillna(data, other): # we need to pass data first so pint has a chance of returning the # correct unit # TODO: revert after https://github.com/hgrecco/pint/issues/1019 is fixed mask = isnull(data)
``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
fillna on dataset converts all variables to float 528060435 |
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 3