cmp_2m = cmp.where(cmp.data['z']==-2).rename({cmp.name: "1m"})
cmp_2m.raw_model_results contains all z levels
|
d = self.data.where(cond, other=np.nan) |
|
d = d.dropna(dim="time", how="all") |
|
return Comparer.from_matched_data(d, self.raw_mod_data) |
This is an issue if we want to plot timeseries for the comparer.
cmp_2m.plot.timeseries()
will plot all model depths
cmp_2m = cmp.where(cmp.data['z']==-2).rename({cmp.name: "1m"})
cmp_2m.raw_model_results contains all z levels
modelskill/src/modelskill/comparison/_comparison.py
Lines 912 to 914 in c50518c
This is an issue if we want to plot timeseries for the comparer.
cmp_2m.plot.timeseries()
will plot all model depths