issue_comments
4 rows where author_association = "MEMBER" and issue = 1286995366 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- CFMaskCoder creates unnecessary copy for `uint16` variables · 4 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
1170142019 | https://github.com/pydata/xarray/issues/6733#issuecomment-1170142019 | https://api.github.com/repos/pydata/xarray/issues/6733 | IC_kwDOAMm_X85FvvND | dcherian 2448579 | 2022-06-29T15:41:45Z | 2022-06-29T15:41:45Z | MEMBER |
If you cast float to int you might lose information neeeded to accurately do the filling step.
Yes. but your data originated as floating point so this is correct.
You can specify |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
CFMaskCoder creates unnecessary copy for `uint16` variables 1286995366 | |
1169321303 | https://github.com/pydata/xarray/issues/6733#issuecomment-1169321303 | https://api.github.com/repos/pydata/xarray/issues/6733 | IC_kwDOAMm_X85Fsm1X | dcherian 2448579 | 2022-06-28T21:57:05Z | 2022-06-28T21:57:05Z | MEMBER |
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
CFMaskCoder creates unnecessary copy for `uint16` variables 1286995366 | |
1169150139 | https://github.com/pydata/xarray/issues/6733#issuecomment-1169150139 | https://api.github.com/repos/pydata/xarray/issues/6733 | IC_kwDOAMm_X85Fr9C7 | dcherian 2448579 | 2022-06-28T19:35:36Z | 2022-06-28T19:35:36Z | MEMBER | Try setting |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
CFMaskCoder creates unnecessary copy for `uint16` variables 1286995366 | |
1169014257 | https://github.com/pydata/xarray/issues/6733#issuecomment-1169014257 | https://api.github.com/repos/pydata/xarray/issues/6733 | IC_kwDOAMm_X85Frb3x | dcherian 2448579 | 2022-06-28T17:23:12Z | 2022-06-28T17:26:17Z | MEMBER | Yeah I think the issue is that the "CFMaskCoder" tries to repalce NaNs regardless of the dtype of the variable. Doing this creates a copy in this step: You should set We should probably raise an error or at least a warning for integer dtypes and not-None As for your initial question, we create a copy of the float array when replacing NaNs (does not happen in-place), then convert to int. So you'll need to account for 2x float array + 1x int array memory use. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
CFMaskCoder creates unnecessary copy for `uint16` variables 1286995366 |
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