jeffboudier HF Staff commited on
Commit
450c817
·
verified ·
1 Parent(s): 62daf94

Adding dataset card

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - text-classification
5
+ - text-generation
6
+ language:
7
+ - en
8
+ tags:
9
+ - startups
10
+ - y-combinator
11
+ - companies
12
+ - entrepreneurship
13
+ - venture-capital
14
+ pretty_name: Y Combinator Companies Dataset
15
+ size_categories:
16
+ - 1K<n<10K
17
+ ---
18
+
19
+ # Y Combinator Companies Dataset
20
+
21
+ ## Dataset Description
22
+
23
+ This dataset contains information about 5,404 Y Combinator funded companies that have been publicly launched, sourced from the YC-OSS-API.
24
+
25
+ ### Dataset Summary
26
+
27
+ - **Total Companies**: 5,404
28
+ - **Time Range**: Summer 2005 - Summer 2025
29
+ - **Update Frequency**: Snapshot from August 2025
30
+ - **Source**: [YC-OSS-API](https://github.com/yc-oss/api)
31
+
32
+ ## Dataset Structure
33
+
34
+ ### Data Fields
35
+
36
+ - `id`: Unique identifier for each company
37
+ - `name`: Company name
38
+ - `slug`: URL-friendly company identifier
39
+ - `former_names`: Previous company names (pipe-separated if multiple)
40
+ - `website`: Company website URL
41
+ - `all_locations`: Office locations
42
+ - `one_liner`: Brief company description
43
+ - `long_description`: Detailed company description
44
+ - `team_size`: Number of employees
45
+ - `industry`: Primary industry category
46
+ - `subindustry`: Specific industry subcategory
47
+ - `launched_at`: Unix timestamp of launch date
48
+ - `tags`: Technology/market tags (pipe-separated)
49
+ - `top_company`: Boolean indicating if it's a top YC company
50
+ - `isHiring`: Current hiring status
51
+ - `nonprofit`: Whether the company is a nonprofit
52
+ - `batch`: YC batch (e.g., "Winter 2012")
53
+ - `status`: Company status (Active, Acquired, Inactive, Public)
54
+ - `industries`: Industry classifications (pipe-separated)
55
+ - `regions`: Geographic regions (pipe-separated)
56
+ - `stage`: Company stage (Early, Growth, etc.)
57
+ - `url`: YC company profile URL
58
+ - `api`: API endpoint for individual company data
59
+
60
+ ### Data Statistics
61
+
62
+ - **Top Companies**: 91
63
+ - **Currently Hiring**: 1,274
64
+ - **Nonprofit Organizations**: 42
65
+ - **Company Status Distribution**:
66
+ - Active
67
+ - Acquired
68
+ - Public
69
+ - Inactive
70
+
71
+ ## Usage
72
+
73
+ ```python
74
+ from datasets import load_dataset
75
+
76
+ # Load the dataset
77
+ dataset = load_dataset("jeffboudier/yc-companies-august-2025")
78
+
79
+ # Convert to pandas DataFrame
80
+ df = dataset['train'].to_pandas()
81
+
82
+ # Example: Find all AI companies
83
+ ai_companies = df[df['tags'].str.contains('AI', case=False, na=False)]
84
+
85
+ # Example: Get companies from specific batch
86
+ winter_2024 = df[df['batch'] == 'Winter 2024']
87
+
88
+ # Example: Currently hiring companies
89
+ hiring = df[df['isHiring'] == True]