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 8a20d9f commit 1981fe9Copy full SHA for 1981fe9
climada/util/calibrate/cross_calibrate.py
@@ -78,7 +78,7 @@ def to_csv(self, filepath):
78
def to_input_var(self, impact_func_gen, **impfset_kwargs):
79
"""Build Unsequa InputVar from the parameters stored in this object"""
80
impf_set_list = [
81
- impact_func_gen(**params) for _, params in self.data.iterrows()
+ impact_func_gen(**row["Parameters"]) for _, row in self.data.iterrows()
82
]
83
return InputVar.impfset(impf_set_list, **impfset_kwargs)
84
0 commit comments