html_url,issue_url,id,node_id,user,created_at,updated_at,author_association,body,reactions,performed_via_github_app,issue
https://github.com/pydata/xarray/pull/2285#issuecomment-405369880,https://api.github.com/repos/pydata/xarray/issues/2285,405369880,MDEyOklzc3VlQ29tbWVudDQwNTM2OTg4MA==,7441788,2018-07-16T20:23:50Z,2018-07-16T20:23:50Z,CONTRIBUTOR,Replaced with https://github.com/pydata/xarray/pull/2293.,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,341149017
https://github.com/pydata/xarray/pull/2285#issuecomment-405368970,https://api.github.com/repos/pydata/xarray/issues/2285,405368970,MDEyOklzc3VlQ29tbWVudDQwNTM2ODk3MA==,7441788,2018-07-16T20:20:38Z,2018-07-16T20:20:38Z,CONTRIBUTOR,"For some reason (presumably due to Github's outage today), this PR isn't updating to reflect the latest commits in my branch. So I'm going to close this one and create a new one.","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,341149017
https://github.com/pydata/xarray/pull/2285#issuecomment-405305811,https://api.github.com/repos/pydata/xarray/issues/2285,405305811,MDEyOklzc3VlQ29tbWVudDQwNTMwNTgxMQ==,7441788,2018-07-16T16:28:21Z,2018-07-16T16:28:21Z,CONTRIBUTOR,"Sample output:
```
(base) C:\Users\Seth\github\xarray>ipython
Python 3.6.5 | packaged by conda-forge | (default, Apr 6 2018, 16:13:55) [MSC v.1900 64 bit (AMD64)]
Type 'copyright', 'credits' or 'license' for more information
IPython 6.4.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: import xarray as xr
In [2]: words = ""This is the time for all good men to come to the aid of their country"".split(' ')
In [3]: for i in range(0, len(words) + 1):
...: print(""-------------------------------------------------------------------------------"")
...: print(xr.DataArray(words[:i], dims=('foo',), coords={'foo': words[:i]}))
...:
-------------------------------------------------------------------------------
array([], dtype=float64)
Coordinates:
* foo (foo) float64
-------------------------------------------------------------------------------
array(['This'], dtype='
array(['This', 'is'], dtype='
array(['This', 'is', 'the'], dtype='
array(['This', 'is', 'the', 'time'], dtype='
array(['This', 'is', 'the', 'time', 'for'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to'],
dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to', 'come'],
dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to', 'come',
'to'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to', 'come',
'to', 'the'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to', 'come',
'to', 'the', 'aid'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to', 'come',
'to', 'the', 'aid', 'of'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to', 'come',
'to', 'the', 'aid', 'of', 'their'], dtype='
array(['This', 'is', 'the', 'time', 'for', 'all', 'good', 'men', 'to', 'come',
'to', 'the', 'aid', 'of', 'their', 'country'], dtype='