home / github / issue_comments

Menu
  • Search all tables
  • GraphQL API

issue_comments: 195563668

This data as json

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/788#issuecomment-195563668 https://api.github.com/repos/pydata/xarray/issues/788 195563668 MDEyOklzc3VlQ29tbWVudDE5NTU2MzY2OA== 10050469 2016-03-11T21:33:06Z 2016-03-11T21:33:16Z MEMBER

Here is a mwe:

``` python import xarray as xr import numpy as np

temp = xr.DataArray(np.random.randn(3, 5), dims=['time', 'x'], coords={'x': [1,2,3,4,5], 'time': [1,2,3]}) temp.coords['rtime'] = temp.time + 3

for some reason this works

temp.plot(x='x', y='rtime');

this does not

temp.plot(x='rtime', y='x');

and this works again

temp.T.plot(x='rtime', y='x'); ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  139863868
Powered by Datasette · Queries took 3.781ms · About: xarray-datasette