Open sastoudt opened 5 years ago
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.
numpy.random.normal
approximate_mean
addressed in https://github.com/datadesk/census-data-aggregator/pull/20
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.