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
Can be solved by change the bin_label = histogram_data["bin_label"][tuple(l)]
to (atleast in case 1D)
try:
bin_label=histogram_data["bin_label"][tuple(l)]
exceptKeyError:
ifnp.all(l[0] <bin_label_keys): # out of key belowfx_vals[i] =np.nandfx_vals[i] =np.nancontinueifnp.all(l[0] >=bin_label_keys): # out of key abovefx_vals[i] =np.nandfx_vals[i] =np.nancontinue
The text was updated successfully, but these errors were encountered:
Used the Umbrella sampling example with my data. Gave me the following when the nbins where higher than an particular value:
Can be solved by change the
bin_label = histogram_data["bin_label"][tuple(l)]
to (atleast in case 1D)
The text was updated successfully, but these errors were encountered: