issue_comments
3 rows where author_association = "MEMBER", issue = 476103888 and user = 5635139 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- DataArray.set_index throws error on documented input · 3 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 522350359 | https://github.com/pydata/xarray/issues/3176#issuecomment-522350359 | https://api.github.com/repos/pydata/xarray/issues/3176 | MDEyOklzc3VlQ29tbWVudDUyMjM1MDM1OQ== | max-sixty 5635139 | 2019-08-18T19:56:19Z | 2019-08-18T19:56:19Z | MEMBER | Good work on finding that issue. I think even if we can get something brief in, that would be helpful. On the specific definitions:
For me 'dimension' has a precise definition from traditional sciences, so having our 'coordinate' be an additional / auxiliary / alternative dimension wouldn't be consistent with that (e.g. a 4-dimensional array would still be 4 dimensional regardless of how many coordinates it had).
👍 |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
DataArray.set_index throws error on documented input 476103888 | |
| 521827695 | https://github.com/pydata/xarray/issues/3176#issuecomment-521827695 | https://api.github.com/repos/pydata/xarray/issues/3176 | MDEyOklzc3VlQ29tbWVudDUyMTgyNzY5NQ== | max-sixty 5635139 | 2019-08-15T23:06:48Z | 2019-08-15T23:06:48Z | MEMBER |
You're not alone; the proliferation and overlap of terms can be confusing at the least. Maybe we should have a glossary somewhere. Briefly:
- Dimensions are like
💯 |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
DataArray.set_index throws error on documented input 476103888 | |
| 518674048 | https://github.com/pydata/xarray/issues/3176#issuecomment-518674048 | https://api.github.com/repos/pydata/xarray/issues/3176 | MDEyOklzc3VlQ29tbWVudDUxODY3NDA0OA== | max-sixty 5635139 | 2019-08-06T13:40:28Z | 2019-08-06T13:40:28Z | MEMBER | Thanks for the issue @gwgundersen I think the docs are potentially a bit unclear, and maybe the error message. The existing intention of ```python In [16]: arr = xr.DataArray(data=np.ones((2, 3)), dims=['x', 'y'], coords={'x': range(2), 'y': range(3), 'a': ('x', [3,4])}) In [17]: arr Out[17]: <xarray.DataArray (x: 2, y: 3)> array([[1., 1., 1.], [1., 1., 1.]]) Coordinates: * x (x) int64 0 1 * y (y) int64 0 1 2 a (x) int64 3 4 In [18]: arr.set_index(x='a') Out[18]: <xarray.DataArray (x: 2, y: 3)> array([[1., 1., 1.], [1., 1., 1.]]) Coordinates: * x (x) int64 3 4 * y (y) int64 0 1 2 ``` We'd definitely be keen on a PR improving the error message (i.e. something like |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
DataArray.set_index throws error on documented input 476103888 |
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