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
For smaller values or with large margins of error, the numpy.random.normal in approximate_mean may return a negative number which won't make sense in context. We should probably just use max(0, simulated_value) instead.
The text was updated successfully, but these errors were encountered:
For smaller values or with large margins of error, the
numpy.random.normal
inapproximate_mean
may return a negative number which won't make sense in context. We should probably just use max(0, simulated_value) instead.The text was updated successfully, but these errors were encountered: