home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where author_association = "MEMBER" and issue = 423742774 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

user 2

  • dcherian 1
  • keewis 1

issue 1

  • Dataset.copy(deep=True) does not deepcopy .attrs · 2 ✖

author_association 1

  • MEMBER · 2 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
1236379727 https://github.com/pydata/xarray/issues/2835#issuecomment-1236379727 https://api.github.com/repos/pydata/xarray/issues/2835 IC_kwDOAMm_X85JsahP keewis 14808389 2022-09-04T17:01:05Z 2022-09-04T17:01:05Z MEMBER

even with python In [1]: import xarray as xr ...: ...: ds = xr.Dataset({"a": ("x", [1, 2, 3], {"t": 0})}, attrs={"t": 1}) ...: ds2 = ds.copy(deep=True) ...: ds.attrs["t"] = 5 ...: ds.a.attrs["t"] = 6 ...: ...: display(ds2, ds2.a) <xarray.Dataset> Dimensions: (x: 3) Dimensions without coordinates: x Data variables: a (x) int64 1 2 3 Attributes: t: 1 <xarray.DataArray 'a' (x: 3)> array([1, 2, 3]) Dimensions without coordinates: x Attributes: t: 0 I cannot reproduce. @Ch-Meier, @DerPlankton13, can either of you post a minimal example demonstrating the issue?

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Dataset.copy(deep=True) does not deepcopy .attrs 423742774
475263182 https://github.com/pydata/xarray/issues/2835#issuecomment-475263182 https://api.github.com/repos/pydata/xarray/issues/2835 MDEyOklzc3VlQ29tbWVudDQ3NTI2MzE4Mg== dcherian 2448579 2019-03-21T14:56:03Z 2019-03-21T14:56:03Z MEMBER

Thanks @kefirbandi, can you send in a PR?

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Dataset.copy(deep=True) does not deepcopy .attrs 423742774

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 12.922ms · About: xarray-datasette