html_url,issue_url,id,node_id,user,created_at,updated_at,author_association,body,reactions,performed_via_github_app,issue
https://github.com/pydata/xarray/issues/470#issuecomment-441486969,https://api.github.com/repos/pydata/xarray/issues/470,441486969,MDEyOklzc3VlQ29tbWVudDQ0MTQ4Njk2OQ==,6063709,2018-11-26T00:14:46Z,2018-11-26T00:14:46Z,CONTRIBUTOR,"In the absence of a dedicated method, it is possible to obtain a scatterplot with the keyword options to `plot.line()`:
```
rho_so_remap.plot.line(marker='o',linewidth=0.)
```
","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,94787306
https://github.com/pydata/xarray/issues/470#issuecomment-401405688,https://api.github.com/repos/pydata/xarray/issues/470,401405688,MDEyOklzc3VlQ29tbWVudDQwMTQwNTY4OA==,4295853,2018-06-29T16:27:02Z,2018-06-29T16:27:02Z,CONTRIBUTOR,I agree this could be helpful... is there any interest in reviving this stale issue?,"{""total_count"": 1, ""+1"": 1, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,94787306
https://github.com/pydata/xarray/issues/470#issuecomment-304091977,https://api.github.com/repos/pydata/xarray/issues/470,304091977,MDEyOklzc3VlQ29tbWVudDMwNDA5MTk3Nw==,1191149,2017-05-25T18:49:29Z,2017-05-25T18:49:29Z,CONTRIBUTOR,"+1
Especially useful when using unstructured spatial datasets like observation stations.
```
import xarray as xr
nstations = 9
data = np.random.random(size = nstations)
longitude = np.random.random(size = nstations) + -90
latitude = np.random.random(size = nstations) + 40
da = xr.DataArray(np.random.random(nstations ), dims = ['station'], coords = dict(longitude = ('station', longitude), latitude = ('station', latitude))
da.scatter(x = 'longitude', y = 'latitude')
```","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,94787306