home / github

Menu
  • GraphQL API
  • Search all tables

issues

Table actions
  • GraphQL API for issues

3 rows where milestone = 1028398, repo = 13221727 and type = "issue" sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: comments, created_at (date), updated_at (date), closed_at (date)

type 1

  • issue · 3 ✖

state 1

  • closed 3

repo 1

  • xarray · 3 ✖
id node_id number title user state locked assignee milestone comments created_at updated_at ▲ closed_at author_association active_lock_reason draft pull_request body reactions performed_via_github_app state_reason repo type
60441490 MDU6SXNzdWU2MDQ0MTQ5MA== 367 ds['time.time'] is broken shoyer 1217238 closed 0   0.4.2 1028398 4 2015-03-10T02:26:48Z 2015-12-04T20:40:30Z 2015-12-04T20:40:30Z MEMBER      

As noted in https://github.com/xray/xray/issues/364:

``` In [32]: t = pd.date_range('2000-01-01', periods=10, freq='H')

In [33]: time = xray.DataArray(t, name='time', dims='time')

In [34]: time['time.time'] Out[34]: <xray.DataArray 'time' (time: 10)> array(['1999-12-31T16:00:00.000000000-0800', '1999-12-31T17:00:00.000000000-0800', '1999-12-31T18:00:00.000000000-0800', '1999-12-31T19:00:00.000000000-0800', '1999-12-31T20:00:00.000000000-0800', '1999-12-31T21:00:00.000000000-0800', '1999-12-31T22:00:00.000000000-0800', '1999-12-31T23:00:00.000000000-0800', '2000-01-01T00:00:00.000000000-0800', '2000-01-01T01:00:00.000000000-0800'], dtype='datetime64[ns]') Coordinates: * time (time) datetime64[ns] 2000-01-01 2000-01-01T01:00:00 ... ```

It should return an array of datetime.time objects.

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/367/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed xarray 13221727 issue
60766919 MDU6SXNzdWU2MDc2NjkxOQ== 369 format argument in to_netcdf should be case insensitive shoyer 1217238 closed 0   0.4.2 1028398 0 2015-03-12T03:45:59Z 2015-04-23T03:41:15Z 2015-04-23T03:41:15Z MEMBER      
{
    "url": "https://api.github.com/repos/pydata/xarray/issues/369/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed xarray 13221727 issue
63344028 MDU6SXNzdWU2MzM0NDAyOA== 379 fillna should work with DataArrays in a dictionary shoyer 1217238 closed 0   0.4.2 1028398 0 2015-03-21T01:52:25Z 2015-04-08T03:44:09Z 2015-04-08T03:44:09Z MEMBER      

Currently this raises a strange error:

python import xray import numpy as np ds = xray.Dataset({'a': ('x', [np.nan] * 3)}) ds.fillna({'a': xray.DataArray([1, 2, 3], dims='x')})

```

AttributeError Traceback (most recent call last) /Users/shoyer/miniconda/envs/rapid/lib/python2.7/site-packages/IPython/core/formatters.pyc in call(self, obj) 693 type_pprinters=self.type_printers, 694 deferred_pprinters=self.deferred_printers) --> 695 printer.pretty(obj) 696 printer.flush() 697 return stream.getvalue()

/Users/shoyer/miniconda/envs/rapid/lib/python2.7/site-packages/IPython/lib/pretty.pyc in pretty(self, obj) 399 if callable(meth): 400 return meth(obj, self, cycle) --> 401 return _default_pprint(obj, self, cycle) 402 finally: 403 self.end_group()

/Users/shoyer/miniconda/envs/rapid/lib/python2.7/site-packages/IPython/lib/pretty.pyc in default_pprint(obj, p, cycle) 519 if _safe_getattr(klass, '__repr__', None) not in _baseclass_reprs: 520 # A user-provided repr. Find newlines and replace them with p.break() --> 521 _repr_pprint(obj, p, cycle) 522 return 523 p.begin_group(1, '<')

/Users/shoyer/miniconda/envs/rapid/lib/python2.7/site-packages/IPython/lib/pretty.pyc in repr_pprint(obj, p, cycle) 701 """A pprint that just redirects to the normal repr function.""" 702 # Find newlines and replace them with p.break() --> 703 output = repr(obj) 704 for idx,output_line in enumerate(output.splitlines()): 705 if idx:

/Users/shoyer/dev/xray/xray/core/dataset.pyc in repr(self) 1043 1044 def repr(self): -> 1045 return formatting.dataset_repr(self) 1046 1047 def isel(self, **indexers):

/Users/shoyer/dev/xray/xray/core/formatting.pyc in dataset_repr(ds) 231 232 summary.append(coords_repr(ds.coords, col_width=col_width)) --> 233 summary.append(vars_repr(ds.data_vars, col_width=col_width)) 234 if ds.attrs: 235 summary.append(attrs_repr(ds.attrs))

/Users/shoyer/dev/xray/xray/core/formatting.pyc in _mapping_repr(mapping, title, summarizer, col_width) 170 summary = ['%s:' % title] 171 if mapping: --> 172 summary += [summarizer(k, v, col_width) for k, v in mapping.items()] 173 else: 174 summary += [EMPTY_REPR]

/Users/shoyer/miniconda/envs/rapid/lib/python2.7/_abcoll.pyc in items(self) 412 def items(self): 413 "D.items() -> list of D's (key, value) pairs, as 2-tuples" --> 414 return [(key, self[key]) for key in self] 415 416 def values(self):

/Users/shoyer/dev/xray/xray/core/dataset.pyc in getitem(self, key) 371 def getitem(self, key): 372 if key not in self._dataset._coord_names: --> 373 return self._dataset[key] 374 else: 375 raise KeyError(key)

/Users/shoyer/dev/xray/xray/core/dataset.pyc in getitem(self, key) 751 key = np.asarray(key) 752 if key.ndim == 0: --> 753 return DataArray._new_from_dataset(self, key.item()) 754 else: 755 return self._copy_listed(key)

/Users/shoyer/dev/xray/xray/core/dataarray.pyc in _new_from_dataset(cls, dataset, name) 198 """ 199 obj = object.new(cls) --> 200 obj._dataset = dataset._copy_listed([name], keep_attrs=False) 201 if name not in obj._dataset: 202 # handle virtual variables

/Users/shoyer/dev/xray/xray/core/dataset.pyc in _copy_listed(self, names, keep_attrs) 680 needed_dims = set() 681 for v in variables.values(): --> 682 needed_dims.update(v._dims) 683 for k in self._coord_names: 684 if set(self._variables[k]._dims) <= needed_dims:

AttributeError: 'NotImplementedType' object has no attribute '_dims' ```

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/379/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed xarray 13221727 issue

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issues] (
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [number] INTEGER,
   [title] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [state] TEXT,
   [locked] INTEGER,
   [assignee] INTEGER REFERENCES [users]([id]),
   [milestone] INTEGER REFERENCES [milestones]([id]),
   [comments] INTEGER,
   [created_at] TEXT,
   [updated_at] TEXT,
   [closed_at] TEXT,
   [author_association] TEXT,
   [active_lock_reason] TEXT,
   [draft] INTEGER,
   [pull_request] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [state_reason] TEXT,
   [repo] INTEGER REFERENCES [repos]([id]),
   [type] TEXT
);
CREATE INDEX [idx_issues_repo]
    ON [issues] ([repo]);
CREATE INDEX [idx_issues_milestone]
    ON [issues] ([milestone]);
CREATE INDEX [idx_issues_assignee]
    ON [issues] ([assignee]);
CREATE INDEX [idx_issues_user]
    ON [issues] ([user]);
Powered by Datasette · Queries took 184.833ms · About: xarray-datasette