issue_comments
2 rows where issue = 246502828 and user = 5635139 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- ENH: three argument version of where · 2 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 319471941 | https://github.com/pydata/xarray/pull/1496#issuecomment-319471941 | https://api.github.com/repos/pydata/xarray/issues/1496 | MDEyOklzc3VlQ29tbWVudDMxOTQ3MTk0MQ== | max-sixty 5635139 | 2017-08-01T19:28:15Z | 2017-08-01T19:28:15Z | MEMBER | Not a clear comment. I had meant for this to work, which it does: ```python In [1]: import xarray as xr In [2]: import numpy as np In [3]: a = xr.DataArray(np.random.rand(3,4), dims=['x','y']) In [4]: b = xr.DataArray(np.random.rand(3,1), dims=['x','y']) In [5]: a+b.squeeze() Out[5]: <xarray.DataArray (x: 3, y: 4)> array([[ 1.394345, 0.916842, 0.806284, 1.604707], [ 1.011313, 0.736347, 0.677679, 0.970856], [ 0.477433, 0.825672, 1.014959, 0.495829]]) Dimensions without coordinates: x, y In [6]: a.where(a>0.5, b.squeeze()) Out[6]: <xarray.DataArray (x: 3, y: 4)> array([[ 0.676462, 0.717883, 0.717883, 0.886823], [ 0.568829, 0.442484, 0.442484, 0.528372], [ 0.100403, 0.725269, 0.914556, 0.100403]]) Dimensions without coordinates: x, y ``` I had meant: |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
ENH: three argument version of where 246502828 | |
| 319423470 | https://github.com/pydata/xarray/pull/1496#issuecomment-319423470 | https://api.github.com/repos/pydata/xarray/issues/1496 | MDEyOklzc3VlQ29tbWVudDMxOTQyMzQ3MA== | max-sixty 5635139 | 2017-08-01T16:27:41Z | 2017-08-01T16:27:41Z | MEMBER | This is excellent! Thank you @shoyer . I agree with forcing exact alignment for the 3 arg version. Does |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
ENH: three argument version of where 246502828 |
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