issue_comments
2 rows where author_association = "NONE", issue = 1206496679 and user = 15319503 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- NotImplementedError: Don't yet support nd fancy indexing · 2 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1101518164 | https://github.com/pydata/xarray/issues/6490#issuecomment-1101518164 | https://api.github.com/repos/pydata/xarray/issues/6490 | IC_kwDOAMm_X85Bp9VU | javedali99 15319503 | 2022-04-18T15:54:30Z | 2022-04-18T15:54:30Z | NONE | Thanks @dcherian @max-sixty. I solved the issue with re-installing |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
NotImplementedError: Don't yet support nd fancy indexing 1206496679 | |
| 1101061409 | https://github.com/pydata/xarray/issues/6490#issuecomment-1101061409 | https://api.github.com/repos/pydata/xarray/issues/6490 | IC_kwDOAMm_X85BoN0h | javedali99 15319503 | 2022-04-18T03:38:43Z | 2022-04-18T03:38:43Z | NONE |
```python download datafor yr in range(2011,2015): url = f'https://downloads.psl.noaa.gov/Datasets/cpc_us_precip/RT/precip.V1.0.{yr}.nc' savename = url.split('/')[-1] urllib.request.urlretrieve(url,savename) combine netcdf filesds2011_2014 = xr.open_mfdataset('precip.V1.0.*.nc', concat_dim='time', combine='nested') coordinatestop = 40 bottom = 37 left = 258 right = 265.4 subsetting the data based on boundary coordinatesds_sel = ds2011_2014.isel(lon=(ds2011_2014.lon >= left) & (ds2011_2014.lon <= right), lat=(ds2011_2014.lat >= bottom) & (ds2011_2014.lat <= top), ) ``` |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
NotImplementedError: Don't yet support nd fancy indexing 1206496679 |
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