issue_comments
1 row where user = 24227838 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1066845844 | https://github.com/pydata/xarray/issues/6355#issuecomment-1066845844 | https://api.github.com/repos/pydata/xarray/issues/6355 | IC_kwDOAMm_X84_lsaU | Tonow 24227838 | 2022-03-14T14:14:28Z | 2022-03-14T14:57:08Z | NONE | For information: they is a problem only for the second dimension this example works well ```shell 6| x4 x4 x4 5| x4 x4 x4 4| x4 x4 x4 3| x3 x3 x3 2| x3 x3 x3 1| x3 x3 x3 10 20 30 40 ``` ```python x3 = xr.Dataset( {
) x4 = xr.Dataset( { "temperature": (("y", "x"), 20 * np.random.rand(9).reshape(3, 3)), "precipitation": (("y", "x"), np.random.rand(9).reshape(3, 3)), }, coords={"y": [10, 20, 30], "x": [4, 5, 6]}, ) ds_test = xr.combine_by_coords([x3, x4]) ds_test.temperature.plot() ``` |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
ValueError: Resulting object does not have monotonic global indexes along dimension in combine_by_coords call 1168304665 |
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