Skip to content

Commit

Permalink
Merge pull request #11 from jerry1ye10/jy/change-cutoff
Browse files Browse the repository at this point in the history
update
  • Loading branch information
musubipapi authored Feb 8, 2023
2 parents 0edd329 + b256869 commit 6137946
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 21 deletions.
3 changes: 2 additions & 1 deletion components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ export default function Navbar() {
<div class="max-w-7xl mx-auto py-5 px-3 sm:px-6 lg:px-8 text-center">
<p class="font-medium text-2xl">
{" "}
Submissions have closed for the second release of Founder's Choice. Our release is coming soon!
Our second ranking list is out! We're proud to feature feedback
from 1077 venture-backed founders.
</p>
</div>
</div>
Expand Down
34 changes: 20 additions & 14 deletions pages/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,25 +116,32 @@ export default function FAQ() {
How much data goes into creating these rankings?
</h3>
<p className={STYLED_PARA}>
Our first batch of rankings uses data from over 375 venture-backed
founders. We only rank VC firms on whom we have enough data. We only
include VC firms with more than 25 comparisons from founders.
Our second release uses data from 1077 venture-backed founders. We only
rank VC firms on whom we believe we have statistically significant data.
Specifically we’ve chosen to include VC firms with more than 100
comparisons from founders.
</p>
<p className={STYLED_PARA}>
We recognize that our first leaderboards may be biased by the sample of
which VC’s portfolio companies submitted rankings, but we believe that
over time the leaderboards will reflect a broader pool of rankings as
more founders submit.
As a note, for our second release, we changed the comparison cutoff from
25 comparisons to 100. We did this because, for us, the biggest priority
is to choose a comparison cutoff where we feel the elo of each firm on
the list is statistically significant. We originally chose 25 last time
because that was the expected number of games where an elo rating
stabilizes in chess. As we’ve gotten more data, we've realized that that
number is closer to 100. Moving forward, with each release, we'll keep
doing our best to ensure that our list builds on top of statistically
significant data.
</p>
<h3 className={STYLED_SUBHEADER}>
How often will you update the rankings?
</h3>
<p className={STYLED_PARA}>
We’ve released our first ranking list! Check it out{" "}
We're planning on updating the rankings roughly every 6 months! Check
out our latest release{" "}
<Link href={"/"}>
<a class="underline text-blue-400">here</a>
</Link>
{""}. Our next leaderboard will release in February 2023.
{""}.
</p>
<h3 className={STYLED_SUBHEADER}>
How else can I do diligence on my future investors?
Expand Down Expand Up @@ -164,16 +171,15 @@ export default function FAQ() {
</p>
<h3 className={STYLED_SUBHEADER}>Who built this?</h3>
<p className={STYLED_PARA}>
We are Jerry Ye and Daniel Tao, two student engineers at UPenn. You can
read more about us{" "}
We are{" "}
<Link href="https://www.linkedin.com/in/jerry-y-048a65110/">
<a class="underline text-blue-400">here</a>
<a class="underline text-blue-400">Jerry Ye</a>
</Link>{" "}
and{" "}
<Link href="https://danxtao.com/">
<a class="underline text-blue-400">here</a>
<a class="underline text-blue-400">Daniel Tao</a>
</Link>
.
, two former student engineers from UPenn.
</p>
<h1 className={`${STYLED_HEADER} text-center mt-8 mb-8 text-6xl`}>
Our Founding Sponsors
Expand Down
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function getStaticProps() {
elo,
};
})
.filter((e) => e.numComparisons > 25)
.filter((e) => e.numComparisons > 100)
.sort((a, b) => parseInt(b.elo) - parseInt(a.elo))
// .filter((e) => e.image !== "")
.map((e, i) => ({ ...e, index: i + 1 }));
Expand Down
12 changes: 7 additions & 5 deletions pages/ranking.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,16 @@ export default function CompletedComparisons({ data = [] }) {
/>
</div>
<h2 className="raleway text-left sm:text-2xl font-extralight mb-4 sm:mt-20 mt-8 text-md">
We only include firms where we received 25 or more comparisons to
other firms. If you're a founder and you want to help increase the
amount of firms on our list, please contribute to our rankings{" "}
<Link href="/login/">
We only include firms where we received 100 or more comparisons to
other firms. We changed this from our first release where we had
included firms with over 25 comparisons. To learn more about our
change and the rest of our methodology, please view our FAQ{" "}
<Link href="/about/">
<a class="underline text-blue-400">here</a>
</Link>
. Our next ranking will be coming out in early February!
.
</h2>

<h2 className="raleway text-left sm:text-2xl font-extralight mb-4 sm:mt-5 text-md">
Disclaimer: Even though we want our ranking to be as comprehensive
as possible, we recommend doing your own diligence on VC firms.
Expand Down

0 comments on commit 6137946

Please sign in to comment.