home / github / issue_comments

Menu
  • GraphQL API
  • Search all tables

issue_comments: 391908483

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/2180#issuecomment-391908483 https://api.github.com/repos/pydata/xarray/issues/2180 391908483 MDEyOklzc3VlQ29tbWVudDM5MTkwODQ4Mw== 6815844 2018-05-25T00:48:27Z 2018-05-25T00:48:27Z MEMBER

2087 changed the second behavior.

```python In [1]: import xarray ...: ...: fridge = xarray.Dataset( ...: data_vars={ ...: 'var1': ('fruit', [10]), ...: }, ...: coords={ ...: 'fruit': ('fruit', [1]), ...: 'quality': ('fruit', ['Red Velvet']), ...: }) ...: shopping = xarray.Dataset( ...: data_vars={ ...: 'var1': ('fruit', [20]), ...: }, ...: coords={ ...: 'fruit': ('fruit', [1]), ...: 'quality': ('fruit', ['Tangerine']), ...: }) ...: ...: fridge['var1'] = shopping['var1'] ...:

```

with v10.3 python In [2]: fridge Out[2]: <xarray.Dataset> Dimensions: (fruit: 1) Coordinates: * fruit (fruit) int64 1 quality (fruit) <U9 'Tangerine' Data variables: var1 (fruit) int64 20 and with v10.4 python In [3]: fridge Out[3]: <xarray.Dataset> Dimensions: (fruit: 1) Coordinates: * fruit (fruit) int64 1 quality (fruit) <U10 'Red Velvet' Data variables: var1 (fruit) int64 20

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