You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
df_sampled, _, overlap_bool=_combine_df_adjacent(df_adjacent, state_ranges, n_tot, df_err_adjacent, err_type='propagate') # doesn't matter what value err_type here is # noqa: E501
df_sampled, _, overlap_bool=_combine_df_adjacent(df_adjacent, state_ranges, df_err_adjacent, err_type='propagate') # doesn't matter what value err_type here is # noqa: E501
# Replace the value in df_err with value in error_bootstrap if df_err corresponds to
329
336
# the df between overlapping states
330
337
foriinrange(n_tot-1):
331
-
ifoverlap_bool[i] isTrue:
338
+
ifMTREXEEisTrueoroverlap_bool[i] isTrue:
332
339
print(f'Replaced the propagated error with the bootstrapped error for states {i} and {i+1}: {df_err[i]:.5f} -> {error_bootstrap[i]:.5f}.') # noqa: E501
0 commit comments