issue_comments
3 rows where issue = 302153432 and user = 1217238 sorted by updated_at descending
This data as json, CSV (advanced)
issue 1
- Support __array_ufunc__ for xarray objects. · 3 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 371680749 | https://github.com/pydata/xarray/pull/1962#issuecomment-371680749 | https://api.github.com/repos/pydata/xarray/issues/1962 | MDEyOklzc3VlQ29tbWVudDM3MTY4MDc0OQ== | shoyer 1217238 | 2018-03-09T01:16:42Z | 2018-03-09T01:16:42Z | MEMBER | If you try to put a pint array into xarray.DataArray right now, I'm pretty sure it will get cast into a NumPy array. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Support __array_ufunc__ for xarray objects. 302153432 | |
| 371658417 | https://github.com/pydata/xarray/pull/1962#issuecomment-371658417 | https://api.github.com/repos/pydata/xarray/issues/1962 | MDEyOklzc3VlQ29tbWVudDM3MTY1ODQxNw== | shoyer 1217238 | 2018-03-08T23:17:52Z | 2018-03-08T23:17:52Z | MEMBER | @dopplershift see https://github.com/pydata/xarray/issues/1938. Units should be able to make use of the same machinery as sparse arrays ( |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Support __array_ufunc__ for xarray objects. 302153432 | |
| 371355899 | https://github.com/pydata/xarray/pull/1962#issuecomment-371355899 | https://api.github.com/repos/pydata/xarray/issues/1962 | MDEyOklzc3VlQ29tbWVudDM3MTM1NTg5OQ== | shoyer 1217238 | 2018-03-08T02:20:21Z | 2018-03-08T02:20:21Z | MEMBER | One potential edge case is if someone directly calls a ufunc reduce method, e.g., Example: ``` current xarrayIn [3]: np.add.reduce(xr.DataArray([1])) Out[3]: 1 with this pull requestIn [3]: np.add.reduce(xr.DataArray(0)) NotImplementedError: reduce method for ufunc <ufunc 'add'> is not implemented on xarray objects, which currently only support the call method. ``` Note that the more commonly used aliases for these reduce methods, e.g., There are also a few other ufunc methods that get used occasionally. I think I'm OK breaking these because usage is so rare (and the work-around of casting to numpy arrays is so easy) but this should probably be noted in the release notes. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Support __array_ufunc__ for xarray objects. 302153432 |
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