issue_comments
1 row where issue = 842438533 and user = 14808389 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date)
issue 1
- Move encoding from xarray.Variable to duck arrays? · 1 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 855037803 | https://github.com/pydata/xarray/issues/5082#issuecomment-855037803 | https://api.github.com/repos/pydata/xarray/issues/5082 | MDEyOklzc3VlQ29tbWVudDg1NTAzNzgwMw== | keewis 14808389 | 2021-06-04T22:13:35Z | 2021-06-04T22:13:51Z | MEMBER | I think dropping on the first operation is the right thing to do, otherwise reloading might cause surprising issues. Consider this: ```python In [4]: encoding = { ...: "add_offset": 267.39366454179356, ...: "scale_factor": 0.0006500423894110363, ...: "dtype": np.dtype("int16"), ...: "_FillValue": -32767, ...: } ...: ds = xr.Dataset({"arr": ("x", [270, 280, 290], {}, encoding)}) ...: ds Out[4]: <xarray.Dataset> Dimensions: (x: 3) Dimensions without coordinates: x Data variables: arr (x) int64 270 280 290 In [5]: ds.arr[:] = [3, 4, 5] ...: ds.to_netcdf("abc.nc") ...: with xr.open_dataset("abc.nc").load() as loaded: ...: display(loaded) ...: display(loaded.arr) ...: <xarray.Dataset> Dimensions: (x: 3) Dimensions without coordinates: x Data variables: arr (x) float32 258.6 259.6 260.6 <xarray.DataArray 'arr' (x: 3)> array([258.60706, 259.6068 , 260.60724], dtype=float32) Dimensions without coordinates: x ``` |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Move encoding from xarray.Variable to duck arrays? 842438533 |
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