issue_comments
5 rows where issue = 374025325 and user = 16700639 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Array indexing with dask arrays · 5 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
944328081 | https://github.com/pydata/xarray/issues/2511#issuecomment-944328081 | https://api.github.com/repos/pydata/xarray/issues/2511 | IC_kwDOAMm_X844SU2R | bzah 16700639 | 2021-10-15T14:03:21Z | 2021-10-15T14:03:21Z | CONTRIBUTOR | I'll drop a PR, it might be easier to try and play with this than a piece of code lost in an issue. |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Array indexing with dask arrays 374025325 | |
931430066 | https://github.com/pydata/xarray/issues/2511#issuecomment-931430066 | https://api.github.com/repos/pydata/xarray/issues/2511 | IC_kwDOAMm_X843hH6y | bzah 16700639 | 2021-09-30T15:30:02Z | 2021-10-06T09:48:19Z | CONTRIBUTOR | Okay I could re do my test.
If I manually call I'm sorry I cannot share as is my code, the relevant portion is really in the middle of many things. I'll try to get a minimalist version of it to share with you. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Array indexing with dask arrays 374025325 | |
930153816 | https://github.com/pydata/xarray/issues/2511#issuecomment-930153816 | https://api.github.com/repos/pydata/xarray/issues/2511 | IC_kwDOAMm_X843cQVY | bzah 16700639 | 2021-09-29T13:02:15Z | 2021-10-06T09:46:10Z | CONTRIBUTOR | @pl-marasco Ok that's strange. I should have saved my use case :/ I will try to reproduce it and will provide a gist of it soon. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Array indexing with dask arrays 374025325 | |
932229595 | https://github.com/pydata/xarray/issues/2511#issuecomment-932229595 | https://api.github.com/repos/pydata/xarray/issues/2511 | IC_kwDOAMm_X843kLHb | bzah 16700639 | 2021-10-01T13:29:32Z | 2021-10-01T13:29:32Z | CONTRIBUTOR | @pl-marasco Thanks for the example ! With it I have the same result as you, it takes the same time with patch or with compute. However, I could construct an example giving very different results. It is quite close to my original code: ``` time_start = time.perf_counter() COORDS = dict( time=pd.date_range("2042-01-01", periods=200, freq=pd.DateOffset(days=1)), ) da = xr.DataArray( np.random.rand(200 * 3500 * 350).reshape((200, 3500, 350)), dims=('time', 'x', 'y'), coords=COORDS ).chunk(dict(time=-1, x=100, y=100))
``` (Basically I want for each month the first event occurring in it). Without the patch and uncommenting |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Array indexing with dask arrays 374025325 | |
922942743 | https://github.com/pydata/xarray/issues/2511#issuecomment-922942743 | https://api.github.com/repos/pydata/xarray/issues/2511 | IC_kwDOAMm_X843Av0X | bzah 16700639 | 2021-09-20T13:45:56Z | 2021-09-20T13:45:56Z | CONTRIBUTOR | I wrote a very naive fix, it works but seems to perform really slowly, I would appreciate some feedback (I'm a beginner with Dask).
Basically, I added The patch: ``` class VectorizedIndexer(ExplicitIndexer): """Tuple for vectorized indexing.
``` |
{ "total_count": 2, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 2, "eyes": 0 } |
Array indexing with dask arrays 374025325 |
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