issue_comments
4 rows where issue = 143877458 and user = 10050469 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: updated_at (date)
These facets timed out: issue
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 218372473 | https://github.com/pydata/xarray/pull/806#issuecomment-218372473 | https://api.github.com/repos/pydata/xarray/issues/806 | MDEyOklzc3VlQ29tbWVudDIxODM3MjQ3Mw== | fmaussion 10050469 | 2016-05-11T06:23:27Z | 2016-05-11T06:23:27Z | MEMBER | Apart for the doc typo I mentioned, this looks very good, thanks! |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Decorators for registering custom accessors in xarray 143877458 | |
| 202488506 | https://github.com/pydata/xarray/pull/806#issuecomment-202488506 | https://api.github.com/repos/pydata/xarray/issues/806 | MDEyOklzc3VlQ29tbWVudDIwMjQ4ODUwNg== | fmaussion 10050469 | 2016-03-28T17:06:14Z | 2016-03-28T17:06:14Z | MEMBER | Thanks for the clarification. Would it make sense to make a |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Decorators for registering custom accessors in xarray 143877458 | |
| 202479266 | https://github.com/pydata/xarray/pull/806#issuecomment-202479266 | https://api.github.com/repos/pydata/xarray/issues/806 | MDEyOklzc3VlQ29tbWVudDIwMjQ3OTI2Ng== | fmaussion 10050469 | 2016-03-28T16:43:34Z | 2016-03-28T16:43:34Z | MEMBER | Oh, I realize that this doesn't answer your question though :flushed: |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Decorators for registering custom accessors in xarray 143877458 | |
| 202476963 | https://github.com/pydata/xarray/pull/806#issuecomment-202476963 | https://api.github.com/repos/pydata/xarray/issues/806 | MDEyOklzc3VlQ29tbWVudDIwMjQ3Njk2Mw== | fmaussion 10050469 | 2016-03-28T16:40:05Z | 2016-03-28T16:40:05Z | MEMBER | Yes, this looks very good, thanks! @khaeru : I had the same question and just tested it: ``` python import xarray as xr import numpy as np @xr.register_dataset_accessor('geo') class GeoAccessor(object): def init(self, xarray_obj): print('In constructor') self._obj = xarray_obj
Nothing is printedds = xr.Dataset({'longitude': np.linspace(0, 10), 'latitude': np.linspace(0, 20)}) out: In constructorout = ds.geo.center out: In constructorplot data on a mapds.geo.plot() ``` So the constructor is called only if the property is accessed, which is good. the drawback is that a new object is instantiated at each access. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Decorators for registering custom accessors in xarray 143877458 |
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