Startups
Almost 700 startup companies backed by Y Combinator between 2005 and 2014
@kaggle.joebeachcapital_startups
Almost 700 startup companies backed by Y Combinator between 2005 and 2014
@kaggle.joebeachcapital_startups
The data contains information on almost 700 startup companies backed by Y Combinator between 2005 and 2014. The data is collected and aggregated from SeedDB, CrunchBase and AngelList. The it has been cleaned and made consistent.
The variables included are:
Startups.csv
Company
Satus
Year Founded
Mapping Location
Description
Categories
Founders
Y Combinator Year
Y Combinator Session
Investors
Amounts raised in different funding rounds
Office Address
Headquarters (City)
Headquarters (US State)
Headquarters (Country)
Logo
Seed-DB Profile
Crunchbase / Angel List Profile Website
Founders.csv
Founder
Company
Gender
CREATE TABLE founders (
"founder" VARCHAR,
"company" VARCHAR,
"gender" VARCHAR
);CREATE TABLE startups (
"company" VARCHAR,
"satus" VARCHAR,
"year_founded" DOUBLE,
"mapping_location" VARCHAR,
"description" VARCHAR,
"categories" VARCHAR,
"founders" VARCHAR,
"y_combinator_year" BIGINT,
"y_combinator_session" VARCHAR,
"investors" VARCHAR,
"amounts_raised_in_different_funding_rounds" VARCHAR,
"office_address" VARCHAR,
"headquarters_city" VARCHAR -- Headquarters (City),
"headquarters_us_state" VARCHAR -- Headquarters (US State),
"headquarters_country" VARCHAR -- Headquarters (Country),
"logo" VARCHAR,
"seed_db_mattermark_profile" VARCHAR -- Seed-DB / Mattermark Profile,
"crunchbase_angel_list_profile" VARCHAR -- Crunchbase / Angel List Profile,
"website" VARCHAR
);Anyone who has the link will be able to view this.