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 bbacfd5 commit 001dc18Copy full SHA for 001dc18
src/geophires_monte_carlo/MC_GeoPHIRES3.py
@@ -451,7 +451,6 @@ def main(command_line_args=None):
451
results_pd = pd.read_csv(output_file)
452
df = pd.DataFrame(results_pd)
453
454
- # Compute the stats along the specified axes.
455
if len(results) < 1:
456
# TODO surface actual exceptions instead of giving this generic message
457
raise RuntimeError(
@@ -460,6 +459,7 @@ def main(command_line_args=None):
460
459
f'when run with your input file.'
461
)
462
+ # Compute the stats along the specified axes.
463
mins = np.nanmin(results, 0)
464
maxs = np.nanmax(results, 0)
465
medians = np.nanmedian(results, 0)
0 commit comments