issue_comments
7 rows where author_association = "CONTRIBUTOR" and user = 1997005 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: issue_url, reactions, created_at (date), updated_at (date)
user 1
- NotSqrt · 7 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 413678494 | https://github.com/pydata/xarray/pull/1953#issuecomment-413678494 | https://api.github.com/repos/pydata/xarray/issues/1953 | MDEyOklzc3VlQ29tbWVudDQxMzY3ODQ5NA== | NotSqrt 1997005 | 2018-08-16T20:43:27Z | 2018-08-16T20:43:27Z | CONTRIBUTOR | @shoyer Can you review those changes, please ? Thanks ! |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Fix maybe_promote 301856320 | |
| 394597043 | https://github.com/pydata/xarray/issues/553#issuecomment-394597043 | https://api.github.com/repos/pydata/xarray/issues/553 | MDEyOklzc3VlQ29tbWVudDM5NDU5NzA0Mw== | NotSqrt 1997005 | 2018-06-05T06:32:26Z | 2018-06-05T06:32:26Z | CONTRIBUTOR | Thanks ! |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
operation on complex number data 103703011 | |
| 394431344 | https://github.com/pydata/xarray/issues/553#issuecomment-394431344 | https://api.github.com/repos/pydata/xarray/issues/553 | MDEyOklzc3VlQ29tbWVudDM5NDQzMTM0NA== | NotSqrt 1997005 | 2018-06-04T17:17:41Z | 2018-06-04T17:17:51Z | CONTRIBUTOR | @shoyer What is the recommended way to keep an DataArray when computing angles ? Thanks ! |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
operation on complex number data 103703011 | |
| 370007209 | https://github.com/pydata/xarray/issues/1952#issuecomment-370007209 | https://api.github.com/repos/pydata/xarray/issues/1952 | MDEyOklzc3VlQ29tbWVudDM3MDAwNzIwOQ== | NotSqrt 1997005 | 2018-03-02T18:21:20Z | 2018-03-02T18:21:20Z | CONTRIBUTOR | Fixing |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray.merge exception : invalid type promotion 301795163 | |
| 359839979 | https://github.com/pydata/xarray/issues/1064#issuecomment-359839979 | https://api.github.com/repos/pydata/xarray/issues/1064 | MDEyOklzc3VlQ29tbWVudDM1OTgzOTk3OQ== | NotSqrt 1997005 | 2018-01-23T16:07:44Z | 2018-01-23T16:07:44Z | CONTRIBUTOR | FYI, |
{
"total_count": 2,
"+1": 1,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 1,
"rocket": 0,
"eyes": 0
} |
Differences on datetime values appears after writing reindexed variable on netCDF file 185709414 | |
| 358570582 | https://github.com/pydata/xarray/issues/1064#issuecomment-358570582 | https://api.github.com/repos/pydata/xarray/issues/1064 | MDEyOklzc3VlQ29tbWVudDM1ODU3MDU4Mg== | NotSqrt 1997005 | 2018-01-18T08:16:06Z | 2018-01-18T08:16:06Z | CONTRIBUTOR | There you go ! ```python import numpy import pandas import tempfile import warnings import xarray array1 = xarray.DataArray( numpy.random.rand(5), dims=['time'], coords={'time': pandas.to_datetime(['2018-01-01', '2018-01-01 00:01', '2018-01-01 00:02', '2018-01-01 00:03', '2018-01-01 00:04'])}, name='foo' ) array2 = xarray.DataArray( numpy.random.rand(5), dims=['time'], coords={'time': pandas.to_datetime(['2018-01-01 00:05', '2018-01-01 00:05:10', '2018-01-01 00:05:20', '2018-01-01 00:05:30', '2018-01-01 00:05:40'])}, name='foo' ) with tempfile.NamedTemporaryFile() as tmp: # save first array array1.to_netcdf(tmp.name) # reload it array1_reloaded = xarray.open_dataarray(tmp.name)
``` |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Differences on datetime values appears after writing reindexed variable on netCDF file 185709414 | |
| 358324488 | https://github.com/pydata/xarray/issues/1064#issuecomment-358324488 | https://api.github.com/repos/pydata/xarray/issues/1064 | MDEyOklzc3VlQ29tbWVudDM1ODMyNDQ4OA== | NotSqrt 1997005 | 2018-01-17T14:41:14Z | 2018-01-17T14:41:14Z | CONTRIBUTOR | I faced this issue when switching from a The first merged dataset had a time dimension which If I try to store values like '2017-08-20 00:00:30', I get the warning Maybe it is similar in your case: netcdf stored the data as 'hours since XXXX', so you lose the minutes. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Differences on datetime values appears after writing reindexed variable on netCDF file 185709414 |
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]);
issue 4