issue_comments
9 rows where issue = 91109966 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- multiple files - variable X not equal across datasets · 9 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
115933651 | https://github.com/pydata/xarray/issues/443#issuecomment-115933651 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTkzMzY1MQ== | shoyer 1217238 | 2015-06-27T01:22:25Z | 2015-06-27T22:44:02Z | MEMBER | OK, I understand now. One of these files looks like:
The problem is that the Another interesting aspect of this file, which relates to how I as hoping to fix https://github.com/xray/xray/issues/438, is that it includes a time coordinate with length 1, but none of the other dataset variables use that coordinate. This suggests to me that we need some sort of hook that can allow you to transform a single dataset before they are joined with ``` python def fix_my_data(ds): return (ds.assign_coords( agl=('mean_height_agl', range(ds.dims['mean_height_agl']))) .swap_dims({'mean_height_agl': 'agl'}) .squeeze('time')) ds = xray.open_mfdataset('*.nc', preprocess=fix_my_data) ``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115906809 | https://github.com/pydata/xarray/issues/443#issuecomment-115906809 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTkwNjgwOQ== | razcore-rad 1177508 | 2015-06-26T22:14:09Z | 2015-06-26T22:14:09Z | NONE | I try concatenating on an existing axis, the |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115903258 | https://github.com/pydata/xarray/issues/443#issuecomment-115903258 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTkwMzI1OA== | shoyer 1217238 | 2015-06-26T22:02:50Z | 2015-06-26T22:02:50Z | MEMBER | Do you concatenate these files along one of the existing axes or a new axis? This might require new API but should probably be supported. Could you print two of these netCDF files that you want to automatically combine with |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115901388 | https://github.com/pydata/xarray/issues/443#issuecomment-115901388 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTkwMTM4OA== | razcore-rad 1177508 | 2015-06-26T21:57:43Z | 2015-06-26T21:57:43Z | NONE | Well, I'm not sure if it's a bug, I would say it's more like a missing feature... in my case, each netCDF file has a different |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115887945 | https://github.com/pydata/xarray/issues/443#issuecomment-115887945 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTg4Nzk0NQ== | shoyer 1217238 | 2015-06-26T21:26:19Z | 2015-06-26T21:26:19Z | MEMBER | Marking this as a bug, I'll see if I can reproduce this with a similar dataset. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115555123 | https://github.com/pydata/xarray/issues/443#issuecomment-115555123 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTU1NTEyMw== | razcore-rad 1177508 | 2015-06-26T07:13:00Z | 2015-06-26T07:13:00Z | NONE | I get this with
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115492420 | https://github.com/pydata/xarray/issues/443#issuecomment-115492420 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTQ5MjQyMA== | shoyer 1217238 | 2015-06-26T03:48:08Z | 2015-06-26T03:48:08Z | MEMBER | Do you get the error message if you specify the full path to this file in open_mfdataset? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115485265 | https://github.com/pydata/xarray/issues/443#issuecomment-115485265 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTQ4NTI2NQ== | razcore-rad 1177508 | 2015-06-26T03:16:23Z | 2015-06-26T03:16:23Z | NONE | So I don't know if this is what you're asking for (I only have one dataset with this problem) but here's how it looks like:
This is read in with |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 | |
115449452 | https://github.com/pydata/xarray/issues/443#issuecomment-115449452 | https://api.github.com/repos/pydata/xarray/issues/443 | MDEyOklzc3VlQ29tbWVudDExNTQ0OTQ1Mg== | shoyer 1217238 | 2015-06-26T01:01:45Z | 2015-06-26T01:01:45Z | MEMBER | Could you print two of the incompatible datasets? I'm not sure if there is a general pattern here (or not). |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
multiple files - variable X not equal across datasets 91109966 |
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 2