humans = Array.from(new Array(10000).keys())
.map(ea => {
const stature_ratio = 1.08
const sex = ['male', 'female'][Math.floor(Math.random() * 2)]
const mu = sex === 'male' ? mean : mean / stature_ratio
const height = skew_normal(Math.random, mu, std_dev, skew)
const bmi = skew_normal(Math.random, 20, 4, 2)
const weight = bmi * height * height / 10000
return {height, weight, sex}
})