Baselight

US Startup Companies Over Time (Timeseries)

Startup companies in the US from 2008

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs

Loading...
Loading...

About this Dataset

US Startup Companies Over Time (Timeseries)

US Startup companies over time (Timeseries)

Startup companies in the US from 2008


About this dataset

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.

Research Ideas

  • 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.

Acknowledgements

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.

Columns

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)

.

Tables

Company

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.company
  • 389.22 KB
  • 1000 rows
  • 12 columns
Loading...

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
);

Company Social To Social

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.company_social_to_social
  • 23.29 KB
  • 2401 rows
  • 3 columns
Loading...

CREATE TABLE company_social_to_social (
  "id" BIGINT,
  "social_media_id" BIGINT,
  "company_id" BIGINT
);

Company To Tag

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.company_to_tag
  • 38.76 KB
  • 4185 rows
  • 3 columns
Loading...

CREATE TABLE company_to_tag (
  "id" BIGINT,
  "company_id" BIGINT,
  "tag_id" BIGINT
);

Founder

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.founder
  • 52.36 KB
  • 2047 rows
  • 4 columns
Loading...

CREATE TABLE founder (
  "id" BIGINT,
  "name" VARCHAR,
  "role" VARCHAR,
  "company_id" BIGINT
);

Founder Social To Social

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.founder_social_to_social
  • 24.98 KB
  • 2255 rows
  • 3 columns
Loading...

CREATE TABLE founder_social_to_social (
  "id" BIGINT,
  "social_media_id" BIGINT,
  "founder_id" BIGINT
);

Socials

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.socials
  • 2.15 KB
  • 8 rows
  • 2 columns
Loading...

CREATE TABLE socials (
  "id" BIGINT,
  "social" VARCHAR
);

Tags

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.tags
  • 5.41 KB
  • 202 rows
  • 2 columns
Loading...

CREATE TABLE tags (
  "id" BIGINT,
  "tag" VARCHAR
);

Ycombinator

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.ycombinator
  • 532.58 KB
  • 1000 rows
  • 12 columns
Loading...

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
);

Ycombinator All

@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs.ycombinator_all
  • 543.68 KB
  • 1000 rows
  • 17 columns
Loading...

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
);

Share link

Anyone who has the link will be able to view this.