issue_comments
2 rows where author_association = "MEMBER" and issue = 91676831 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- asarray Compatibility · 2 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 116412391 | https://github.com/pydata/xarray/issues/448#issuecomment-116412391 | https://api.github.com/repos/pydata/xarray/issues/448 | MDEyOklzc3VlQ29tbWVudDExNjQxMjM5MQ== | shoyer 1217238 | 2015-06-29T03:26:39Z | 2015-06-29T03:26:39Z | MEMBER | Xray doesn't use numpy ndarray subclasses, mostly because that would tie our underlying array implementations to numpy and stop us from using interesting alternative array implementations like dask. Hence, |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
asarray Compatibility 91676831 | |
| 116406425 | https://github.com/pydata/xarray/issues/448#issuecomment-116406425 | https://api.github.com/repos/pydata/xarray/issues/448 | MDEyOklzc3VlQ29tbWVudDExNjQwNjQyNQ== | shoyer 1217238 | 2015-06-29T03:13:33Z | 2015-06-29T03:13:33Z | MEMBER | Unfortunately, there's no way to make We do have some other options, though. The first two already work:
- use
``` python def keep_metadata(func): def wrapper(array, **kwargs): return array.array_wrap(func(array)) return wrapper @keep_metadata def db2w(arr): return 10 ** (np.asarray(arr) / 20.0) ``` |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
asarray Compatibility 91676831 |
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