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-1030874975,https://api.github.com/repos/pydata/xarray/issues/470,1030874975,IC_kwDOAMm_X849cedf,30388627,2022-02-06T17:15:46Z,2022-02-06T17:15:46Z,NONE,"@aidanheerdegen Thanks for the code. I suppose it's better to mention this method for DataArray in User Guide. @dcherian
Should I create a PR for example like this?
```
air = xr.tutorial.open_dataset(""air_temperature"")['air']
air.isel(lon=10, lat=[19, 21, 22]).plot.line(x=""time"", marker='o',linewidth=0.,markersize=1)
```

","{""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-304107683,https://api.github.com/repos/pydata/xarray/issues/470,304107683,MDEyOklzc3VlQ29tbWVudDMwNDEwNzY4Mw==,4992424,2017-05-25T19:57:22Z,2017-05-25T19:57:22Z,NONE,"This certainly could be useful, but since this is essentially plotting a vector of data, why not just drop into pandas?
```
df = da.to_dataframe()
# Could reset coordinates if you really wanted
# df = df.reset_index()
df.plot.scatter('longitude', 'latitude', c=da.name)
```
Patching in this rough functionality into the plotting module should be really straightforward, maybe @jhamman has some tips?","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,94787306