home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

6 rows where issue = 608536405 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: reactions, created_at (date), updated_at (date)

user 4

  • M-Harrington 3
  • dcherian 1
  • jthielen 1
  • keewis 1

author_association 3

  • NONE 3
  • MEMBER 2
  • CONTRIBUTOR 1

issue 1

  • Subset from conditional coordinates · 6 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
622006384 https://github.com/pydata/xarray/issues/4013#issuecomment-622006384 https://api.github.com/repos/pydata/xarray/issues/4013 MDEyOklzc3VlQ29tbWVudDYyMjAwNjM4NA== M-Harrington 42118783 2020-04-30T17:51:22Z 2020-04-30T17:51:22Z NONE

Very helpful resources, thank you all!

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Subset from conditional coordinates 608536405
621481919 https://github.com/pydata/xarray/issues/4013#issuecomment-621481919 https://api.github.com/repos/pydata/xarray/issues/4013 MDEyOklzc3VlQ29tbWVudDYyMTQ4MTkxOQ== dcherian 2448579 2020-04-29T21:45:43Z 2020-04-29T21:45:43Z MEMBER

we could also add something here: https://xarray.pydata.org/en/stable/howdoi.html

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Subset from conditional coordinates 608536405
621379267 https://github.com/pydata/xarray/issues/4013#issuecomment-621379267 https://api.github.com/repos/pydata/xarray/issues/4013 MDEyOklzc3VlQ29tbWVudDYyMTM3OTI2Nw== keewis 14808389 2020-04-29T18:17:12Z 2020-04-29T18:17:12Z MEMBER

take a look at https://xarray.pydata.org/en/stable/#get-in-touch where a few options are listed. I'm not a active user of SO / SE so I can't comment on that, but I think it is fine to ask questions like this one using the issue tracker.

Also, thanks for reaching out about the examples. I agree we should have descriptions on what each of them is trying to achieve, and we should also think about linking to the relevant section in the narrative documentation. In this case, that would be https://xarray.pydata.org/en/stable/indexing.html#masking-with-where

{
    "total_count": 3,
    "+1": 3,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Subset from conditional coordinates 608536405
621367736 https://github.com/pydata/xarray/issues/4013#issuecomment-621367736 https://api.github.com/repos/pydata/xarray/issues/4013 MDEyOklzc3VlQ29tbWVudDYyMTM2NzczNg== M-Harrington 42118783 2020-04-29T17:55:06Z 2020-04-29T17:55:54Z NONE

@jthielen is there a better place to ask these questions in the future? I like the the package quite a bit, but sometimes I struggle to answer basic questions like this from the documentation alone (ex: this page could maybe use a few words explaining the examples?). On the other hand I asked here because I wasn't sure how much traction my question would get on stack exchange.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Subset from conditional coordinates 608536405
620833480 https://github.com/pydata/xarray/issues/4013#issuecomment-620833480 https://api.github.com/repos/pydata/xarray/issues/4013 MDEyOklzc3VlQ29tbWVudDYyMDgzMzQ4MA== M-Harrington 42118783 2020-04-28T20:21:05Z 2020-04-28T20:21:05Z NONE

Sounds like this is what I’m looking for, I’ll try it out soon thank you! I wasn’t aware that where had a drop option

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Subset from conditional coordinates 608536405
620797019 https://github.com/pydata/xarray/issues/4013#issuecomment-620797019 https://api.github.com/repos/pydata/xarray/issues/4013 MDEyOklzc3VlQ29tbWVudDYyMDc5NzAxOQ== jthielen 3460034 2020-04-28T19:03:33Z 2020-04-28T19:03:33Z CONTRIBUTOR

Does the drop argument on the .where() method satisfy your needs? For example,

python ds.where((ds.y >= 30) & (ds.y <= 50), drop=True)

reduces the shape of the foo variable to (4, 3), as desired.

{
    "total_count": 3,
    "+1": 3,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Subset from conditional coordinates 608536405

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
    ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
    ON [issue_comments] ([user]);
Powered by Datasette · Queries took 559.24ms · About: xarray-datasette