issue_comments
11 rows where issue = 185794232 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Options to binary ops kwargs · 11 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
260100010 | https://github.com/pydata/xarray/pull/1065#issuecomment-260100010 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI2MDEwMDAxMA== | chunweiyuan 5572303 | 2016-11-12T04:00:10Z | 2016-11-12T04:00:10Z | CONTRIBUTOR | woohoo! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
260099994 | https://github.com/pydata/xarray/pull/1065#issuecomment-260099994 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI2MDA5OTk5NA== | shoyer 1217238 | 2016-11-12T03:59:56Z | 2016-11-12T03:59:56Z | MEMBER | Thank you @chunweiyuan! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
259842050 | https://github.com/pydata/xarray/pull/1065#issuecomment-259842050 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1OTg0MjA1MA== | chunweiyuan 5572303 | 2016-11-10T23:48:11Z | 2016-11-10T23:48:11Z | CONTRIBUTOR | Alright, if that's desired, I'd just change code in |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
259757652 | https://github.com/pydata/xarray/pull/1065#issuecomment-259757652 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1OTc1NzY1Mg== | shoyer 1217238 | 2016-11-10T17:45:11Z | 2016-11-10T17:45:11Z | MEMBER | My concern is how this setting currently does not change how we join variables in Dataset math. Consider the current behavior -- it always does an inner join of the data variables: ``` In [2]: import xarray as xr In [3]: ds1 = xr.Dataset({'foo': 1, 'bar': 2}) In [4]: ds2 = xr.Dataset({'bar': 2, 'baz': 3}) In [5]: ds1 Out[5]: <xarray.Dataset> Dimensions: () Coordinates: empty Data variables: bar int64 2 foo int64 1 In [6]: ds2 Out[6]: <xarray.Dataset> Dimensions: () Coordinates: empty Data variables: bar int64 2 baz int64 3 In [7]: ds1 + ds2 Out[7]: <xarray.Dataset> Dimensions: () Coordinates: empty Data variables: bar int64 4 ``` Logically, it makes sense for this option to switch this to an outer join instead. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
259750146 | https://github.com/pydata/xarray/pull/1065#issuecomment-259750146 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1OTc1MDE0Ng== | chunweiyuan 5572303 | 2016-11-10T17:15:29Z | 2016-11-10T17:15:29Z | CONTRIBUTOR | Just checking in. Is there something else that needs to be added to this PR before merge? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
257063335 | https://github.com/pydata/xarray/pull/1065#issuecomment-257063335 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1NzA2MzMzNQ== | shoyer 1217238 | 2016-10-29T01:40:11Z | 2016-10-29T01:40:11Z | MEMBER |
Indeed, we are safe here. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
257063103 | https://github.com/pydata/xarray/pull/1065#issuecomment-257063103 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1NzA2MzEwMw== | mrocklin 306380 | 2016-10-29T01:36:05Z | 2016-10-29T01:36:05Z | MEMBER | I haven't noticed people getting caught by using It would be good to ensure that this affects the graph and that the actual tasks don't depend on the global state. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
257061634 | https://github.com/pydata/xarray/pull/1065#issuecomment-257061634 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1NzA2MTYzNA== | shoyer 1217238 | 2016-10-29T01:10:18Z | 2016-10-29T01:10:18Z | MEMBER | It occurs to me now that the other reason why people avoid global variables is because of concerns around thread safety and distributed computation. Even with the context manager, bad things will happen if you use I need to think about this a little more. Copious warnings in the docs might be enough, or maybe entering a On the other hand, the current implementation is basically identical to how functionality like NumPy's @mrocklin does this seem like the sort of change we can do in xarray without seriously regretting it later? Xarray uses basically the same |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
257002464 | https://github.com/pydata/xarray/pull/1065#issuecomment-257002464 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1NzAwMjQ2NA== | shoyer 1217238 | 2016-10-28T19:03:56Z | 2016-10-28T19:03:56Z | MEMBER | Set coordinates on the 1D -- something like [0,1,2] for the first, [1,2,3] for the second. Then the inner join should have [1,2] vs [0,1,2,3] for outer join. On Fri, Oct 28, 2016 at 12:00 PM chunweiyuan notifications@github.com wrote:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
257001251 | https://github.com/pydata/xarray/pull/1065#issuecomment-257001251 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1NzAwMTI1MQ== | chunweiyuan 5572303 | 2016-10-28T18:58:42Z | 2016-10-28T18:58:42Z | CONTRIBUTOR | Out of curiosity, how do I test inner-join vs. outer-join using only 1-D arrays? I can certainly simplify the current tests to be 2D + 1D. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 | |
256812672 | https://github.com/pydata/xarray/pull/1065#issuecomment-256812672 | https://api.github.com/repos/pydata/xarray/issues/1065 | MDEyOklzc3VlQ29tbWVudDI1NjgxMjY3Mg== | shoyer 1217238 | 2016-10-28T01:15:30Z | 2016-10-28T01:15:30Z | MEMBER | Let's find a more descriptive name for this option than merely Also please add documentation notes about this new functionality to this section of the docs and the "what's new" page. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Options to binary ops kwargs 185794232 |
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