US Startup Companies Over Time (Timeseries)
Startup companies in the US from 2008
@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs
Startup companies in the US from 2008
@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs
The dataset contains information on startup companies in the US from 2008, including company name, location, team size, number of founders, and other relevant information. This data can be used to empower the next wave of entrepreneurs by providing insights on what types of startups are being founded, where they are located, and how large their teams are. Additionally, this dataset can be used to understand trends in the startup industry over time.
- Study the trend of startups over time.
- Track the number of startups in each industry and compare companies and industries.
- Identify geographies with a high concentration of startups for recruiting purposes.
- Map the development cycle of a startup from ideation to successful exit.
The dataset was first posted here
License
> License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
> No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.
File: company.csv
| Column name | Description |
|---|---|
| company_name | The name of the startup company. (String) |
| link | A link to the company's website. (String) |
| short_description | A short description of the company. (String) |
| founded | The year the company was founded. (Integer) |
| team_size | The number of people on the company's team. (Integer) |
| location | The city where the company is located. (String) |
| country | The country where the company is located. (String) |
| no_founders | The number of founders of the company. (Integer) |
| no_company_socials | The number of social media accounts associated with the company. (Integer) |
| no_tags | The number of tags associated with the company. (Integer) |
File: company_social_to_social.csv
File: company_to_tag.csv
File: founder.csv
| Column name | Description |
|---|---|
| name | The name of the startup company. (String) |
| role | The role of the person in the company. (String) |
File: founder_social_to_social.csv
File: socials.csv
| Column name | Description |
|---|---|
| social | A list of social media links for the company. (List) |
File: tags.csv
| Column name | Description |
|---|---|
| tag | The name of the startup company. (String) |
File: ycombinator_all.csv
| Column name | Description |
|---|---|
| company_name | The name of the startup company. (String) |
| link | A link to the company's website. (String) |
| short_description | A short description of the company. (String) |
| founded | The year the company was founded. (Integer) |
| team_size | The number of people on the company's team. (Integer) |
| location | The city where the company is located. (String) |
| no_founders | The number of founders of the company. (Integer) |
| no_company_socials | The number of social media accounts associated with the company. (Integer) |
| no_tags | The number of tags associated with the company. (Integer) |
| country | The country where the company is located. (String) |
File: ycombinator.csv
| Column name | Description |
|---|---|
| company_name | The name of the startup company. (String) |
| link | A link to the company's website. (String) |
| short_description | A short description of the company. (String) |
| no_tags | The number of tags associated with the company. (Integer) |
| no_company_socials | The number of social media accounts associated with the company. (Integer) |
| founded | The year the company was founded. (Integer) |
| team_size | The number of people on the company's team. (Integer) |
| location | The city where the company is located. (String) |
.
CREATE TABLE company (
"id" BIGINT,
"company_name" VARCHAR,
"link" VARCHAR,
"short_description" VARCHAR,
"founded" BIGINT,
"team_size" BIGINT,
"location" VARCHAR,
"country" VARCHAR,
"no_founders" BIGINT,
"no_company_socials" BIGINT,
"no_tags" BIGINT,
"description" VARCHAR
);CREATE TABLE company_social_to_social (
"id" BIGINT,
"social_media_id" BIGINT,
"company_id" BIGINT
);CREATE TABLE company_to_tag (
"id" BIGINT,
"company_id" BIGINT,
"tag_id" BIGINT
);CREATE TABLE founder (
"id" BIGINT,
"name" VARCHAR,
"role" VARCHAR,
"company_id" BIGINT
);CREATE TABLE founder_social_to_social (
"id" BIGINT,
"social_media_id" BIGINT,
"founder_id" BIGINT
);CREATE TABLE socials (
"id" BIGINT,
"social" VARCHAR
);CREATE TABLE tags (
"id" BIGINT,
"tag" VARCHAR
);CREATE TABLE ycombinator (
"company_name" VARCHAR,
"link" VARCHAR,
"short_description" VARCHAR,
"tags" VARCHAR,
"company_socials" VARCHAR,
"founded" DOUBLE,
"team_size" DOUBLE,
"full_location" VARCHAR,
"location" VARCHAR,
"active_founders" VARCHAR,
"about_founders" VARCHAR,
"description" VARCHAR
);CREATE TABLE ycombinator_all (
"company_id" BIGINT,
"company_name" VARCHAR,
"link" VARCHAR,
"short_description" VARCHAR,
"tags" VARCHAR,
"company_socials" VARCHAR,
"founded" BIGINT,
"team_size" BIGINT,
"full_location" VARCHAR,
"location" VARCHAR,
"active_founders" VARCHAR,
"about_founders" VARCHAR,
"description" VARCHAR,
"no_founders" BIGINT,
"no_company_socials" BIGINT,
"no_tags" BIGINT,
"country" VARCHAR
);Anyone who has the link will be able to view this.