We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79bf694 commit fc5356bCopy full SHA for fc5356b
doc/examples/weather-data.rst
@@ -112,5 +112,7 @@ fill missing values by group:
112
both = xray.Dataset({'some_missing': some_missing, 'filled': filled})
113
both
114
115
+ df = both.sel(time='2000').mean('location').reset_coords(drop=True).to_dataframe()
116
+
117
@savefig examples_filled.png
- both.sel(time='2000').mean('location').reset_coords(drop=True).to_dataframe().plot()
118
+ df[['filled', 'some_missing']].plot()
0 commit comments