issue_comments
4 rows where issue = 158212793 and user = 10050469 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Drawing only one contour · 4 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
223709530 | https://github.com/pydata/xarray/issues/866#issuecomment-223709530 | https://api.github.com/repos/pydata/xarray/issues/866 | MDEyOklzc3VlQ29tbWVudDIyMzcwOTUzMA== | fmaussion 10050469 | 2016-06-03T22:26:50Z | 2016-06-03T23:08:25Z | MEMBER | @shoyer I thought that the colorbar was not very meaningful for contours, but I changed my mind. [EDIT] I just updated the PR again. See the following example generated with the PR branch: ``` python import numpy as np import matplotlib.pyplot as plt import xarray as xr x, y = np.meshgrid(np.arange(12), np.arange(12)) z = xr.DataArray(np.sqrt(x2 + y2)) ds = z.to_dataset(name='z') f, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(6, 6)) ds.z.plot.contour(ax=ax1, levels=[4]) ds.z.plot.contour(ax=ax2, levels=[-1, 2, 4, 6, 8]) ds.z.plot.contour(ax=ax3, levels=[4], colors=['k']) ds.z.plot.contour(ax=ax4, levels=[2, 4, 6, 8], colors=['k', 'r', 'g', 'b']) plt.tight_layout() plt.show() ``` I think it's ok now, and the 1-level examples now run just fine. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Drawing only one contour 158212793 | |
223638374 | https://github.com/pydata/xarray/issues/866#issuecomment-223638374 | https://api.github.com/repos/pydata/xarray/issues/866 | MDEyOklzc3VlQ29tbWVudDIyMzYzODM3NA== | fmaussion 10050469 | 2016-06-03T17:16:14Z | 2016-06-03T17:16:14Z | MEMBER | This PR should fix the issue. I now realize you were maybe willing to submit your own fix @JoyMonteiro ? Sorry if that was the case I can retract my PR. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Drawing only one contour 158212793 | |
223628261 | https://github.com/pydata/xarray/issues/866#issuecomment-223628261 | https://api.github.com/repos/pydata/xarray/issues/866 | MDEyOklzc3VlQ29tbWVudDIyMzYyODI2MQ== | fmaussion 10050469 | 2016-06-03T16:34:26Z | 2016-06-03T16:36:12Z | MEMBER | Actually there are a couple of other things which are not OK with xarray's ``` python import numpy as np import matplotlib.pyplot as plt import xarray as xr x, y = np.meshgrid(np.arange(12), np.arange(12)) z = xr.DataArray(np.sqrt(x2 + y2)) kw = {'levels':[2, 4, 6, 8], 'colors':['k']} f, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) z.plot.contour(ax=ax1, kw) ax2.contour(z.values, kw) plt.show() ``` I'll try to have a look at what's going on. @xarraydevs, do you agree that |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Drawing only one contour 158212793 | |
223520490 | https://github.com/pydata/xarray/issues/866#issuecomment-223520490 | https://api.github.com/repos/pydata/xarray/issues/866 | MDEyOklzc3VlQ29tbWVudDIyMzUyMDQ5MA== | fmaussion 10050469 | 2016-06-03T08:26:00Z | 2016-06-03T08:26:00Z | MEMBER | Here's a mwe: ``` python import numpy as np import matplotlib.pyplot as plt import xarray as xr x, y = np.meshgrid(np.arange(12), np.arange(12)) z = xr.DataArray(x2 + y2) z.plot.contour(levels=[10], add_colorbar=False) ``` which indeed doesn't plot anything. Note that without
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Drawing only one contour 158212793 |
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