issue_comments
4 rows where author_association = "MEMBER", issue = 58310637 and user = 1217238 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date)
issue 1
- Support out-of-core computation using dask · 4 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 94074862 | https://github.com/pydata/xarray/issues/328#issuecomment-94074862 | https://api.github.com/repos/pydata/xarray/issues/328 | MDEyOklzc3VlQ29tbWVudDk0MDc0ODYy | shoyer 1217238 | 2015-04-17T21:03:12Z | 2015-04-17T21:03:12Z | MEMBER | Basic support for dask.array is merged on master. Continued in https://github.com/xray/xray/issues/394 |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Support out-of-core computation using dask 58310637 | |
| 87509188 | https://github.com/pydata/xarray/issues/328#issuecomment-87509188 | https://api.github.com/repos/pydata/xarray/issues/328 | MDEyOklzc3VlQ29tbWVudDg3NTA5MTg4 | shoyer 1217238 | 2015-03-30T01:39:02Z | 2015-03-30T01:39:02Z | MEMBER | @mrocklin It occurs to me now that a much simpler version of the functionality I'm looking for with |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Support out-of-core computation using dask 58310637 | |
| 75476521 | https://github.com/pydata/xarray/issues/328#issuecomment-75476521 | https://api.github.com/repos/pydata/xarray/issues/328 | MDEyOklzc3VlQ29tbWVudDc1NDc2NTIx | shoyer 1217238 | 2015-02-23T00:56:51Z | 2015-02-23T00:56:51Z | MEMBER | Yes, take_nd is very similar to fancy indexing but only non-negative indices are valid (-1 means insert NaN). |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Support out-of-core computation using dask 58310637 | |
| 75475215 | https://github.com/pydata/xarray/issues/328#issuecomment-75475215 | https://api.github.com/repos/pydata/xarray/issues/328 | MDEyOklzc3VlQ29tbWVudDc1NDc1MjE1 | shoyer 1217238 | 2015-02-23T00:30:02Z | 2015-02-23T00:31:00Z | MEMBER |
Turns out what I was thinking of here can be written as a one liner in terms of
So I've crossed that one off the line.
What I need here is something similar to the private ``` In [1]: import pandas In [2]: import numpy as np In [3]: x = np.arange(5) In [4]: pandas.core.common.take_nd(x, [0, -1, 1, -1, 2]) Out[4]: array([ 0., nan, 1., nan, 2.]) ``` (In xray, I implement this a little differently so that I can take along all multiple axes simultaneously using array indexing, but this version would suffice.) |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Support out-of-core computation using dask 58310637 |
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