getExpExpPopulationSizes=(burnin)=>(height)=>{
const Ne=burnin.map(d=>getExpExpPopSize(d,height)).filter(d=>d).sort(d3.ascending)
const Upper = d3.quantile(Ne,0.975);
const Lower = d3.quantile(Ne,0.025);
const Median = d3.median(Ne);
const Mean = d3.mean(Ne);
return {height,Upper,Lower,Median,Mean, Ne}
}