home / github / issue_comments

Menu
  • Search all tables
  • GraphQL API

issue_comments: 324732814

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/pull/1517#issuecomment-324732814 https://api.github.com/repos/pydata/xarray/issues/1517 324732814 MDEyOklzc3VlQ29tbWVudDMyNDczMjgxNA== 306380 2017-08-24T19:25:32Z 2017-08-24T19:25:32Z MEMBER

Yes if you don't care strongly about deduplication. The following will be slower:

b = (a.chunk(...) + 1) + (a.chunk(...) + 1)

In current operation this will be optimized to

tmp = a.chunk(...) + 1
b = tmp + tmp

So you'll lose that, but I suspect that in your case chunking the same dataset many times is somewhat rare.

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