We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97cd434 commit 8a7f71aCopy full SHA for 8a7f71a
gwgen/evaluation.py
@@ -458,9 +458,8 @@ def ds(self):
458
idx_name = full[next(v for v in self.names) + '_sim'].dims[-1]
459
full = full.rename({idx_name: 'full_index'})
460
for vref, vsim in self.all_variables:
461
- full.rename({vref: 'all_' + vref, vsim: 'all_' + vsim},
462
- inplace=True)
463
- ds.merge(full, inplace=True)
+ full = full.rename({vref: 'all_' + vref, vsim: 'all_' + vsim})
+ ds = ds.merge(full)
464
for orig, attrs, (vref, vsim) in zip(
465
self.names, self.names.values(), self.all_variables):
466
for prefix in ['', 'all_']:
0 commit comments