issue_comments
5 rows where issue = 549679475 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- xr.dot requires equal indexes (join="exact") · 5 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 575104969 | https://github.com/pydata/xarray/issues/3694#issuecomment-575104969 | https://api.github.com/repos/pydata/xarray/issues/3694 | MDEyOklzc3VlQ29tbWVudDU3NTEwNDk2OQ== | mathause 10194086 | 2020-01-16T11:15:25Z | 2020-01-16T11:15:25Z | MEMBER | Sorry for the noise, I do live thinking... However, if I do (2) there is a different behavior for
So?
|
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xr.dot requires equal indexes (join="exact") 549679475 | |
| 575097853 | https://github.com/pydata/xarray/issues/3694#issuecomment-575097853 | https://api.github.com/repos/pydata/xarray/issues/3694 | MDEyOklzc3VlQ29tbWVudDU3NTA5Nzg1Mw== | mathause 10194086 | 2020-01-16T10:56:40Z | 2020-01-16T10:57:08Z | MEMBER | On second thought, even with implemented
|
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xr.dot requires equal indexes (join="exact") 549679475 | |
| 575094227 | https://github.com/pydata/xarray/issues/3694#issuecomment-575094227 | https://api.github.com/repos/pydata/xarray/issues/3694 | MDEyOklzc3VlQ29tbWVudDU3NTA5NDIyNw== | mathause 10194086 | 2020-01-16T10:47:33Z | 2020-01-16T10:47:33Z | MEMBER | I started with a PR using 1) Use (3) is certainly the largest change but may be as easy as ``` python import numpy as np import xarray as xr d1 = xr.DataArray([2, 3, 5, np.NaN]) d2 = xr.DataArray([2, 3, 5, 7]) xr.dot(d1, d2) # -> NaN xr.dot(d1.fillna(0.), d2) # -> 38 (d1 * d2).sum() # -> 38 ``` I use this at: https://github.com/pydata/xarray/blob/3cc00c121931b5dc0247b4ea5809c4051a4dacdd/xarray/core/weighted.py#L142-L149 |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xr.dot requires equal indexes (join="exact") 549679475 | |
| 574544180 | https://github.com/pydata/xarray/issues/3694#issuecomment-574544180 | https://api.github.com/repos/pydata/xarray/issues/3694 | MDEyOklzc3VlQ29tbWVudDU3NDU0NDE4MA== | shoyer 1217238 | 2020-01-15T08:09:21Z | 2020-01-15T08:09:21Z | MEMBER | You could dig through the original PRs to be sure, but I think we mostly picked |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xr.dot requires equal indexes (join="exact") 549679475 | |
| 574425136 | https://github.com/pydata/xarray/issues/3694#issuecomment-574425136 | https://api.github.com/repos/pydata/xarray/issues/3694 | MDEyOklzc3VlQ29tbWVudDU3NDQyNTEzNg== | fujiisoup 6815844 | 2020-01-14T23:37:11Z | 2020-01-14T23:37:11Z | MEMBER | I have no strong opinion, but if most of the arithmetic in xarray uses |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xr.dot requires equal indexes (join="exact") 549679475 |
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