issue_comments
10 rows where author_association = "MEMBER" and issue = 225846258 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Changing projections under plot() · 10 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
299202380 | https://github.com/pydata/xarray/issues/1397#issuecomment-299202380 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5OTIwMjM4MA== | fmaussion 10050469 | 2017-05-04T14:30:46Z | 2017-05-04T14:30:46Z | MEMBER | OK, I've had success with
Note that the result will look better if you set
|
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
299193840 | https://github.com/pydata/xarray/issues/1397#issuecomment-299193840 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5OTE5Mzg0MA== | fmaussion 10050469 | 2017-05-04T14:01:37Z | 2017-05-04T14:01:37Z | MEMBER |
The default is |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
299190567 | https://github.com/pydata/xarray/issues/1397#issuecomment-299190567 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5OTE5MDU2Nw== | fmaussion 10050469 | 2017-05-04T13:49:40Z | 2017-05-04T13:49:40Z | MEMBER | @darothen did you find out how to control the map extent in facetgrids? See this example:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
299049285 | https://github.com/pydata/xarray/issues/1397#issuecomment-299049285 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5OTA0OTI4NQ== | fmaussion 10050469 | 2017-05-03T22:06:16Z | 2017-05-03T22:06:16Z | MEMBER | What is it exactly what you are trying to do? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
299027358 | https://github.com/pydata/xarray/issues/1397#issuecomment-299027358 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5OTAyNzM1OA== | rabernat 1197350 | 2017-05-03T20:35:11Z | 2017-05-03T20:35:11Z | MEMBER |
@CommonClimate, you are now the ideal contributor to create such an example for the docs. 😉 |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
299009125 | https://github.com/pydata/xarray/issues/1397#issuecomment-299009125 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5OTAwOTEyNQ== | fmaussion 10050469 | 2017-05-03T19:19:59Z | 2017-05-03T19:19:59Z | MEMBER |
You can try:
Yes, as a general purpose tool xarray will try to avoid the proliferation of keyword arguments. If you have very specific needs you might need to tweak the plots yourself. Fortunately, this is easy to do on top of xarray since you can control the axes, plots, and so on. We could add more advanced examples to the docs though (for example in the gallery I had no time to add yet :( ) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
298914845 | https://github.com/pydata/xarray/issues/1397#issuecomment-298914845 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5ODkxNDg0NQ== | rabernat 1197350 | 2017-05-03T13:44:42Z | 2017-05-03T13:44:42Z | MEMBER | When I put together the tutorial, I remember that the Robinson projection was the only one that worked reliably. But that was more than a year ago--hopefully updating package versions can fix the issue. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
298855171 | https://github.com/pydata/xarray/issues/1397#issuecomment-298855171 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5ODg1NTE3MQ== | fmaussion 10050469 | 2017-05-03T08:49:23Z | 2017-05-03T08:49:23Z | MEMBER | This is what I get: ```python import xarray as xr import cartopy import cartopy.crs as ccrs import matplotlib import matplotlib.pyplot as plt %matplotlib inline print(xr.version) print(cartopy.version) print(matplotlib.version) ds = xr.tutorial.load_dataset('rasm') plt.figure(figsize=(14, 4)); ax = plt.axes(projection=ccrs.Robinson()); ds.Tair[0].plot.pcolormesh(ax=ax, transform=ccrs.PlateCarree(), x='xc', y='yc', add_colorbar=False); ax.coastlines(); plt.tight_layout(); ```
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
298832853 | https://github.com/pydata/xarray/issues/1397#issuecomment-298832853 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5ODgzMjg1Mw== | fmaussion 10050469 | 2017-05-03T06:32:56Z | 2017-05-03T06:32:56Z | MEMBER | I don't have this problem. did you use the code from the documentation? http://xarray.pydata.org/en/latest/examples/multidimensional-coords.html |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 | |
298814633 | https://github.com/pydata/xarray/issues/1397#issuecomment-298814633 | https://api.github.com/repos/pydata/xarray/issues/1397 | MDEyOklzc3VlQ29tbWVudDI5ODgxNDYzMw== | shoyer 1217238 | 2017-05-03T03:17:00Z | 2017-05-03T03:17:00Z | MEMBER | What exactly did you type? Note that even if you set |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Changing projections under plot() 225846258 |
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 3