issue_comments
7 rows where issue = 98629509 and user = 1217238 sorted by updated_at descending
This data as json, CSV (advanced)
These facets timed out: author_association, issue
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
128193197 | https://github.com/pydata/xarray/pull/509#issuecomment-128193197 | https://api.github.com/repos/pydata/xarray/issues/509 | MDEyOklzc3VlQ29tbWVudDEyODE5MzE5Nw== | shoyer 1217238 | 2015-08-06T00:30:31Z | 2015-08-06T00:30:31Z | MEMBER | @jhamman you should merge this once you and @clarkfitzg are happy. I'm about go offline for 6 days (backpacking in the Olympics). |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Discrete colormap/colorbar option 98629509 | |
128158707 | https://github.com/pydata/xarray/pull/509#issuecomment-128158707 | https://api.github.com/repos/pydata/xarray/issues/509 | MDEyOklzc3VlQ29tbWVudDEyODE1ODcwNw== | shoyer 1217238 | 2015-08-05T21:45:53Z | 2015-08-05T21:45:53Z | MEMBER | @clarkfitzg any thoughts here? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Discrete colormap/colorbar option 98629509 | |
128158577 | https://github.com/pydata/xarray/pull/509#issuecomment-128158577 | https://api.github.com/repos/pydata/xarray/issues/509 | MDEyOklzc3VlQ29tbWVudDEyODE1ODU3Nw== | shoyer 1217238 | 2015-08-05T21:45:13Z | 2015-08-05T21:45:13Z | MEMBER | These tests look great -- thanks! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Discrete colormap/colorbar option 98629509 | |
127507325 | https://github.com/pydata/xarray/pull/509#issuecomment-127507325 | https://api.github.com/repos/pydata/xarray/issues/509 | MDEyOklzc3VlQ29tbWVudDEyNzUwNzMyNQ== | shoyer 1217238 | 2015-08-04T07:30:37Z | 2015-08-04T07:30:37Z | MEMBER | Decided to try reorganizing things and got sucked in, so I ended up making a PR to your fork with some tweaks: https://github.com/jhamman/xray/pull/1 This assuredly still needs more tests -- mostly to verify that every plot types ends up with consistent levels. Here's my demo notebook: https://gist.github.com/shoyer/e6fafbc672021600d9f3 and a teaser:
The main difference in functionality is in my PR is that Also, I entirely replaced the levels calculation in contour/contourf with our calculated levels instead of merely trying to replicate it. That ensures things are guaranteed to be exactly identical across all plot types. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Discrete colormap/colorbar option 98629509 | |
127364421 | https://github.com/pydata/xarray/pull/509#issuecomment-127364421 | https://api.github.com/repos/pydata/xarray/issues/509 | MDEyOklzc3VlQ29tbWVudDEyNzM2NDQyMQ== | shoyer 1217238 | 2015-08-03T18:35:04Z | 2015-08-03T18:35:04Z | MEMBER |
I would opt for your solution 2. I think this basically means using |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Discrete colormap/colorbar option 98629509 | |
127164584 | https://github.com/pydata/xarray/pull/509#issuecomment-127164584 | https://api.github.com/repos/pydata/xarray/issues/509 | MDEyOklzc3VlQ29tbWVudDEyNzE2NDU4NA== | shoyer 1217238 | 2015-08-03T08:39:18Z | 2015-08-03T08:39:18Z | MEMBER | Looking at the matplotlib source code, here's how they figure out levels in contour/contourf: https://github.com/matplotlib/matplotlib/blob/714d18788320325d0bff75184f62d472f67ceb91/lib/matplotlib/contour.py#L1143 It looks like they use It should be pretty straightforward to use that here. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Discrete colormap/colorbar option 98629509 | |
127163088 | https://github.com/pydata/xarray/pull/509#issuecomment-127163088 | https://api.github.com/repos/pydata/xarray/issues/509 | MDEyOklzc3VlQ29tbWVudDEyNzE2MzA4OA== | shoyer 1217238 | 2015-08-03T08:29:34Z | 2015-08-03T08:32:11Z | MEMBER | Some feedback:
1. matplotlib seems to have nice heuristics for picking level splits with contour plots. I wonder if it would be feasible to copy that logic here when setting our own discrete levels? Compare:
3. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Discrete colormap/colorbar option 98629509 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);
user 1