Vivameda commited on
Commit
86ed3fe
·
verified ·
1 Parent(s): 45199c4

Initial dataset card for 503-company longitudinal sample

Browse files
Files changed (1) hide show
  1. README.md +159 -3
README.md CHANGED
@@ -1,3 +1,159 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ - time-series-forecasting
7
+ - feature-extraction
8
+ language:
9
+ - en
10
+ tags:
11
+ - longitudinal
12
+ - workforce
13
+ - companies
14
+ - historical
15
+ - panel
16
+ - training
17
+ pretty_name: longitudinal_503companies_1950_2020
18
+ size_categories:
19
+ - 10K<n<100K
20
+ ---
21
+ # Vivameda Longitudinal Company Sample (1950–2020)
22
+
23
+ A 503-company longitudinal panel covering 70 years of company-level workforce evolution. Designed as a foundational training substrate for AI systems reasoning about organizations, companies, and human capital over time.
24
+
25
+ **This is a sample drawn from the full Vivameda universe of 4.2M companies and 48M company-year observations.**
26
+
27
+ ## Why this dataset exists
28
+
29
+ Most AI systems reasoning about companies suffer from severe recency bias. Their training data is scraped from the last few years of the web, which means they have only ever seen the post-2015 platform economy.
30
+
31
+ This sample exposes models to seventy years of organizational evolution: postwar expansion, stagflation, the personal computer era, the dot-com boom and bust, the 2008 financial crisis, the platform era, and the late-cycle zero-interest-rate period. Each row describes a single company's observable state in a single year — its size, growth, workforce structure, capability mix, and computed signal flags.
32
+
33
+ The dataset is fixed. It does not update. ML training runs against it produce reproducible results.
34
+
35
+ ## What's in the sample
36
+
37
+ | | |
38
+ |---|---|
39
+ | Companies | 503 |
40
+ | Company-year records | 25,988 |
41
+ | Year range | 1950–2020 (71 years) |
42
+ | Columns | 34 |
43
+ | Schema layers | workforce, growth, tenure, role mix, capability mix, signal flags |
44
+
45
+ The 503 companies are curated across five depth tiers to ensure the sample exercises every layer of the schema:
46
+
47
+ | Tier | Companies | Description |
48
+ |---|---|---|
49
+ | 70-year anchor | 99 | Observable across the full 1950–2020 range. Large historical entities including IBM, Ford, Chevron, and major institutions. |
50
+ | 60–69 year anchor | 147 | Postwar-era giants and long-running institutions. |
51
+ | 50–59 year anchor | 147 | Late-20th-century emergent corporations. |
52
+ | 40–49 year anchor | 99 | Tech and consumer companies founded in the 1970s–1980s. |
53
+ | Modern showcase | 11 | Young high-profile companies including NVIDIA, SpaceX, Airbnb, Stripe, DoorDash, Palantir, Datadog, Databricks, Coinbase, Shopify, Figma. |
54
+
55
+ ## Coverage by era
56
+
57
+ Not every row contains every layer. Coverage layers onto the base panel as source density increases through time. The `record_depth` column labels what is available in each row, so you can filter cleanly to the level of enrichment you need.
58
+
59
+ | Era | Record depth | Rows |
60
+ |---|---|---|
61
+ | 1950–1989 | panel_only | 11,182 |
62
+ | 1990–2009 | panel_plus_capability | 9,318 |
63
+ | 2010–2016 | panel_plus_capability_plus_role | 3,476 |
64
+ | 2017–2020 | full_record | 2,012 |
65
+
66
+ NULL values in this dataset are meaningful. They reflect insufficient signal density at that point in time, not missing data points. Filter accordingly.
67
+
68
+ ## Schema
69
+
70
+ ### Identity
71
+ - `company_id` — stable lowercase-dashed identifier, primary join key
72
+ - `company_name` — human-readable display name
73
+ - `company_domain` — primary web domain if known
74
+ - `industry` — normalized taxonomy of 75 categories
75
+ - `country` — country of corporate headquarters
76
+ - `year` — observation year (1950–2020)
77
+ - `sample_tier` — which curation tier the company was drawn from (sample-only, not present at universe scale)
78
+ - `record_depth` — enrichment layers available in this row
79
+
80
+ ### Workforce and tenure
81
+ - `headcount_observed` — observed employee count, directly observable not corporate-reported
82
+ - `company_size_midpoint`, `company_size_bucket` — size aggregates
83
+ - `net_headcount_change` — year-over-year headcount delta
84
+ - `avg_tenure_years`, `tenure_bucket` — workforce tenure metrics
85
+
86
+ ### Growth
87
+ - `growth_rate_yoy`, `prev_growth_rate_yoy` — year-over-year growth percentages
88
+ - `growth_is_reliable` — passes internal plausibility checks
89
+ - `growth_bucket` — categorical bucket from "Shrinking fast" to "Hyper growth"
90
+
91
+ ### Role mix (2010–2020)
92
+ - `primary_role_bucket` — dominant role category from 9 canonical buckets
93
+ - `primary_role_pct` — percentage of workforce in that role
94
+ - `distinct_role_buckets` — count of distinct role categories present
95
+ - `role_diversity_bucket`, `role_coverage_pct`
96
+
97
+ ### Capability mix (1990–2020)
98
+ - `top_capability_1`, `top_capability_1_pct` (and ranks 2 and 3)
99
+ - `capability_coverage_pct` — completeness indicator
100
+
101
+ ### Signal flags
102
+ Four computed binary flags capturing notable year-over-year dynamics. Definitions are deterministic and reproducible from the raw growth fields.
103
+
104
+ - `early_scaling_flag` — sustained fast growth at emerging scale
105
+ - `contraction_flag` — transition from growth to meaningful decline
106
+ - `recovery_signal_flag` — reversal from decline to growth
107
+ - `growth_acceleration_flag` ��� increasing growth above a meaningful baseline
108
+
109
+ ML practitioners will often prefer to compute their own signals from the raw growth fields, tailored to specific use cases. Raw fields are always available, including in rows where flags are NULL.
110
+
111
+ ## Use cases
112
+
113
+ This sample is designed for:
114
+
115
+ - Pre-training and fine-tuning models that reason about companies, workforces, or organizational evolution
116
+ - Evaluating model behavior on out-of-distribution historical regimes
117
+ - Time-series forecasting on long-horizon company panels
118
+ - Feature engineering and embedding generation at the company-year grain
119
+ - Behavioral pattern extraction across multi-decade economic regimes
120
+
121
+ ## Loading the data
122
+
123
+ ```python
124
+ import pandas as pd
125
+
126
+ df = pd.read_csv("vivameda_longitudinal_sample_503companies_1950_2020.csv")
127
+
128
+ print(df.shape) # (25988, 34)
129
+ print(df['year'].min(), df['year'].max()) # 1950, 2020
130
+ print(df['company_id'].nunique()) # 503
131
+
132
+ # Filter to a specific era's record depth
133
+ modern = df[df['record_depth'] == 'full_record']
134
+
135
+ # Or to a specific tier
136
+ historical = df[df['sample_tier'] == '70yr_anchor']
137
+ ```
138
+
139
+ ## About Vivameda
140
+
141
+ Vivameda maintains a longitudinal universe of 4.2 million companies covering 1950–2020, with 48 million company-year records, role distributions, capability buckets, and tenure layers. The full universe powers organizational reasoning research, training data for AI systems, and predictive analytics for venture, credit, and strategy use cases.
142
+
143
+ What hedge funds and quant funds have paid for over decades, Vivameda is making available to AI labs and researchers as training substrate.
144
+
145
+ ## Licensing
146
+
147
+ This sample is released under **CC-BY-NC-4.0**. Free for research, academic, and non-commercial use with attribution. Commercial licensing of the full universe is available — contact Vivameda directly.
148
+
149
+ ## Contact
150
+
151
+ - Web: [vivameda.com](https://vivameda.com)
152
+ - Email: data@vivameda.com
153
+ - Book a 20-minute call: [calendly.com/oli-nold/data-discussion-call](https://calendly.com/oli-nold/data-discussion-call)
154
+
155
+ ## Citation
156
+
157
+ If you use this dataset in research, please cite:
158
+
159
+ > Vivameda Longitudinal Company Sample (1950–2020), v1.0. Vivameda Ltd, April 2026.