Hacker News new | ask | show | jobs
by johnvschmitt 4203 days ago
Thanks. That is indeed an incredible level of transparency. I didn't see a CSV download but just scanning, it looks like it's more like a $200k median, with 1.6M average. Medians just make far more sense in letting someone outside the system know what to expect. Just like, "The average actress in Hollywood makes $250k, when in fact the median is $30k and a few make $100M).
1 comments

They don't have a CSV export, but here's a quick Javascript script that pulls the fundings and calculates the median and average.

Total companies: 486

Median funding: $450,000

Average funding: $2,039,918

Total funding: $991,400,000

  var fundings = $('.batch .parent .right').map(function(){ 
    return +this.innerHTML.replace(/(\$|,| )/g, '') || 0;
  }).toArray();

  fundings = fundings.sort(function(a, b) { return a - b; });

  var totalFunding = fundings.reduce(function(a, b) { return a + b; });

  console.log('Total companies: ', fundings.length);
  console.log('Median funding: ', fundings[Math.round(fundings.length / 2)]);
  console.log('Average funding: ', Math.round(totalFunding / fundings.length));