issue_comments
14 rows where author_association = "MEMBER" and issue = 524043729 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Add defaults during concat 508 · 14 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
1362936825 | https://github.com/pydata/xarray/pull/3545#issuecomment-1362936825 | https://api.github.com/repos/pydata/xarray/issues/3545 | IC_kwDOAMm_X85RPMP5 | kmuehlbauer 5821660 | 2022-12-22T14:56:44Z | 2022-12-22T14:56:44Z | MEMBER | @scottcha @keewis I've tried hard, but finally decided to start from scratch, see #7400. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
1306187168 | https://github.com/pydata/xarray/pull/3545#issuecomment-1306187168 | https://api.github.com/repos/pydata/xarray/issues/3545 | IC_kwDOAMm_X85N2tWg | keewis 14808389 | 2022-11-07T21:02:35Z | 2022-11-09T14:13:24Z | MEMBER |
I did try that a few months ago, but a lot has changed since the PR was opened so it might actually be easier to reimplement the PR? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
1306229983 | https://github.com/pydata/xarray/pull/3545#issuecomment-1306229983 | https://api.github.com/repos/pydata/xarray/issues/3545 | IC_kwDOAMm_X85N23zf | kmuehlbauer 5821660 | 2022-11-07T21:37:11Z | 2022-11-07T21:37:11Z | MEMBER | Thanks @keewis for the heads up. I'll have a look and if things get too complicated a reimplementation might be our best option. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
1306157550 | https://github.com/pydata/xarray/pull/3545#issuecomment-1306157550 | https://api.github.com/repos/pydata/xarray/issues/3545 | IC_kwDOAMm_X85N2mHu | kmuehlbauer 5821660 | 2022-11-07T20:38:21Z | 2022-11-07T20:38:21Z | MEMBER | Great @scottcha, I was coming back here too every once in an while to just refresh my mind with the ideas pursued here. I can try to rebase the PR onto latest main, if I can free some cycles in the following days for starters. |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
1306147080 | https://github.com/pydata/xarray/pull/3545#issuecomment-1306147080 | https://api.github.com/repos/pydata/xarray/issues/3545 | IC_kwDOAMm_X85N2jkI | kmuehlbauer 5821660 | 2022-11-07T20:26:57Z | 2022-11-07T20:26:57Z | MEMBER | @scottcha Are you still around and interested to bring this along? If not I could try to dive again into this. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
586346637 | https://github.com/pydata/xarray/pull/3545#issuecomment-586346637 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU4NjM0NjYzNw== | dcherian 2448579 | 2020-02-14T15:52:21Z | 2020-02-14T15:52:33Z | MEMBER | I am now wondering if we can use Example: goal is concat along 'x' with result dataset having Step 1 would be where we deal with all the edge cases mentioned in @shoyer's comment viz
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
579203497 | https://github.com/pydata/xarray/pull/3545#issuecomment-579203497 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU3OTIwMzQ5Nw== | kmuehlbauer 5821660 | 2020-01-28T11:33:41Z | 2020-01-28T11:52:02Z | MEMBER | @scottcha @shoyer below is a minimal example where one variable is missing in each file. ```python import random random.seed(123) random.randint(0, 10) create var names list with one missing valueorig = [f'd{i:02}' for i in range(10)] datasets = [] for i in range(1, 9): l1 = orig.copy() l1.remove(f'd{i:02}') datasets.append(l1) create filesfor i, dsl in enumerate(datasets): foo_data = np.arange(24).reshape(2, 3, 4) with nc.Dataset(f'test{i:02}.nc', 'w') as ds: ds.createDimension('x', size=2) ds.createDimension('y', size=3) ds.createDimension('z', size=4) for k in dsl: ds.createVariable(k, int, ('x', 'y', 'z')) ds.variables[k][:] = foo_data flist = glob.glob('test*.nc') dslist = [] for f in flist: dslist.append(xr.open_dataset(f)) ds2 = xr.concat(dslist, dim='time') ds2 ``` Output:
Three cases here:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
577778006 | https://github.com/pydata/xarray/pull/3545#issuecomment-577778006 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU3Nzc3ODAwNg== | shoyer 1217238 | 2020-01-23T17:10:48Z | 2020-01-23T17:10:48Z | MEMBER | Can you explain why you think you need the nested iteration over dataset variables? What ordering are you trying to achieve? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
577745924 | https://github.com/pydata/xarray/pull/3545#issuecomment-577745924 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU3Nzc0NTkyNA== | kmuehlbauer 5821660 | 2020-01-23T15:59:47Z | 2020-01-23T15:59:47Z | MEMBER | @dcherian Just to clarify, the concatenation is done along a new dimension (which has to be created by expand_dims). What do you mean by short-clrcuit in this context? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
577737475 | https://github.com/pydata/xarray/pull/3545#issuecomment-577737475 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU3NzczNzQ3NQ== | dcherian 2448579 | 2020-01-23T15:41:33Z | 2020-01-23T15:41:33Z | MEMBER |
Hmmm... maybe we need a short-circuit version of |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
577696741 | https://github.com/pydata/xarray/pull/3545#issuecomment-577696741 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU3NzY5Njc0MQ== | kmuehlbauer 5821660 | 2020-01-23T14:08:57Z | 2020-01-23T14:08:57Z | MEMBER | @scottcha @shoyer For one of my use cases (240 datasets, 1 with missing variables) I do not see any performance penalties using this implementation compared to the current. But this might be due to the fact, that the most time consuming part is the If I can be of any help to push this over the line, please ping me. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
577530863 | https://github.com/pydata/xarray/pull/3545#issuecomment-577530863 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU3NzUzMDg2Mw== | kmuehlbauer 5821660 | 2020-01-23T06:52:06Z | 2020-01-23T07:29:37Z | MEMBER | @scottcha If found this while searching. Have the same requirements, means missing DataArrays in some Datasets of a timeseries to be concatenated. I've already some hacks and workarounds in place for my specific use cases, but it would be really great if this could be handled by xarray. I'll try to test your current implementation against my source data and will report my findings here. Update: I've rebased locally on latest master and this works smoothly with my data (which uses packed data). I'll now look into performance. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
569845354 | https://github.com/pydata/xarray/pull/3545#issuecomment-569845354 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU2OTg0NTM1NA== | shoyer 1217238 | 2019-12-31T01:40:02Z | 2019-12-31T01:40:02Z | MEMBER | I'll take a look at this more carefully soon. But I do think it is a hard requirement that concat runs in linear time (with respect to the total number of variables across all datasets). On Mon, Dec 30, 2019 at 5:18 PM Scott Chamberlin notifications@github.com wrote:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 | |
555299451 | https://github.com/pydata/xarray/pull/3545#issuecomment-555299451 | https://api.github.com/repos/pydata/xarray/issues/3545 | MDEyOklzc3VlQ29tbWVudDU1NTI5OTQ1MQ== | shoyer 1217238 | 2019-11-19T02:12:45Z | 2019-11-19T02:12:45Z | MEMBER | Thanks for working on this important issue! There are a lot of edge cases that can come up in |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add defaults during concat 508 524043729 |
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 4