Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CB-quakemodel committed Jul 24, 2024
1 parent 3be86a0 commit b571f13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openquake/smt/residuals/gmpe_residuals.py
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,8 @@ def get_stochastic_area_wrt_imt(self):
expected = np.array([], dtype=float)
stddev = np.array([], dtype=float)
for context in self.contexts:
obs = np.hstack([obs, np.log(context["Observations"][imtx])])
obs = np.hstack(
[obs, np.log(context["Observations"][imtx])])
expected = np.hstack(
[expected,context["Expected"][gmpe][imtx]["Mean"]])
stddev = np.hstack(
Expand Down

0 comments on commit b571f13

Please sign in to comment.