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/issues/1651#issuecomment-364503678,https://api.github.com/repos/pydata/xarray/issues/1651,364503678,MDEyOklzc3VlQ29tbWVudDM2NDUwMzY3OA==,5635139,2018-02-09T17:36:29Z,2018-02-09T17:36:29Z,MEMBER,Closed by https://github.com/pydata/xarray/pull/1640,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,267826297
https://github.com/pydata/xarray/issues/1651#issuecomment-338868401,https://api.github.com/repos/pydata/xarray/issues/1651,338868401,MDEyOklzc3VlQ29tbWVudDMzODg2ODQwMQ==,5635139,2017-10-24T04:15:47Z,2017-10-24T04:15:47Z,MEMBER,"Ah, that explains a lot. Thanks for the clarification. ","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,267826297
https://github.com/pydata/xarray/issues/1651#issuecomment-338855039,https://api.github.com/repos/pydata/xarray/issues/1651,338855039,MDEyOklzc3VlQ29tbWVudDMzODg1NTAzOQ==,5635139,2017-10-24T02:40:35Z,2017-10-24T02:40:35Z,MEMBER,"Right, but numpy functions return the original type?
```
In [6]: da=xr.DataArray(np.random.rand(2,4))
In [12]: np.sum(da, axis=1)
Out[12]:
array([ 0.880766, 2.058156])
Dimensions without coordinates: dim_0
In [14]: np.flip(da, 1)
Out[14]:
array([[ 0.279932, 0.307569, 0.291855, 0.001411],
[ 0.681486, 0.556972, 0.083212, 0.736487]])
Dimensions without coordinates: dim_0, dim_1
```","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,267826297