issue_comments
4 rows where author_association = "MEMBER", issue = 729980097 and user = 10194086 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Option to skip tests in `weighted()` · 4 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 719907040 | https://github.com/pydata/xarray/issues/4541#issuecomment-719907040 | https://api.github.com/repos/pydata/xarray/issues/4541 | MDEyOklzc3VlQ29tbWVudDcxOTkwNzA0MA== | mathause 10194086 | 2020-10-31T09:10:10Z | 2020-10-31T09:10:10Z | MEMBER | Yes that would be great. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Option to skip tests in `weighted()` 729980097 | |
| 717320425 | https://github.com/pydata/xarray/issues/4541#issuecomment-717320425 | https://api.github.com/repos/pydata/xarray/issues/4541 | MDEyOklzc3VlQ29tbWVudDcxNzMyMDQyNQ== | mathause 10194086 | 2020-10-27T15:23:55Z | 2020-10-27T15:23:55Z | MEMBER | The discussion goes back to here: https://github.com/pydata/xarray/pull/2922#issuecomment-545200082 (by @dcherian)
Thinking a bit more about this I now favour the In addition, I am also not entirely sure I understand where your issue lies. You eventually have to compute, right? Do you do something between Ah maybe I understand, your data looks like:
And now My limited speed tests:
```python
import numpy as np
import xarray as xr
a = xr.DataArray(np.random.randn(1000, 1000, 10, 10))
%timeit a.isnull().any()
%timeit a.fillna(0)
b = xr.DataArray(np.random.randn(1000, 1000, 10, 10)).chunk(100)
%timeit b.isnull().any()
%timeit b.fillna(0)
```
|
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Option to skip tests in `weighted()` 729980097 | |
| 717240738 | https://github.com/pydata/xarray/issues/4541#issuecomment-717240738 | https://api.github.com/repos/pydata/xarray/issues/4541 | MDEyOklzc3VlQ29tbWVudDcxNzI0MDczOA== | mathause 10194086 | 2020-10-27T13:24:43Z | 2020-10-27T13:24:43Z | MEMBER | The other possibility would be to do sth like: ```python def init(..., skipna=False):
``` we did decide to not do this somewhere in the discussion, not entirely sure anymore why. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Option to skip tests in `weighted()` 729980097 | |
| 717107362 | https://github.com/pydata/xarray/issues/4541#issuecomment-717107362 | https://api.github.com/repos/pydata/xarray/issues/4541 | MDEyOklzc3VlQ29tbWVudDcxNzEwNzM2Mg== | mathause 10194086 | 2020-10-27T09:27:25Z | 2020-10-27T09:27:25Z | MEMBER |
I think The relevant test is here: https://github.com/pydata/xarray/blob/adc55ac4d2883e0c6647f3983c3322ca2c690514/xarray/tests/test_weighted.py#L22 |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Option to skip tests in `weighted()` 729980097 |
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