pibou commited on
Commit
b609337
·
verified ·
1 Parent(s): 5d8d5f7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -14
README.md CHANGED
@@ -1,28 +1,92 @@
1
- # Measuring the Intensive Margin of Work: Data
2
 
3
- This repository contains the data generated and analyzed in the paper:
4
- **["Measuring the Intensive Margin of Work: Task Shares and Concentration"](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6174538)**
5
 
6
- Suggested citation:
7
- Bouquet, Pierre and Sheffi, Yossi, Measuring the Intensive Margin of Work: Task Shares and Concentration (February 03, 2026). MIT Center for Transportation & Logistics Research Paper No. 2026/004, Available at SSRN: https://ssrn.com/abstract=6174538 or http://dx.doi.org/10.2139/ssrn.6174538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  ## Data Description
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ### Mean Estimates
12
- We provide mean estimates for each O*NET version (from 20.1 to the current production version) for the following metrics:
13
 
14
- * **Yearly occurrence count** for each job-task pair:
15
- `task_labor_input_mean_estimates/{ONET_VERSION}/ONET_{ONET_VERSION}_weight_mode_STANDARD_task_flow_mean_estimates.csv`
16
- * **Labor input share** for each job-task pair:
17
- `task_labor_input_mean_estimates/{ONET_VERSION}/ONET_{ONET_VERSION}_weight_mode_STANDARD_task_labor_input_mean_estimates.csv`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- ### Full Estimators
20
- We provide mean and variance for each O*NET version (from 20.1 to the current production version) for the following metrics when the data is available:
21
 
22
- **To be released**
23
 
24
  ---
25
 
26
  ## License
27
 
28
- This work is licensed under a [Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License (CC BY-NC-ND 4.0)](https://creativecommons.org/licenses/by-nc-nd/4.0/).
 
 
1
+ # Measuring the Intensive Margin of Work: Task-Level Labor Input Data
2
 
3
+ This repository provides task-level measures of labor input within occupations, constructed from O*NET task frequency data.
 
4
 
5
+ For each job–task pair, we estimate:
6
+
7
+ * **Task flow (μ)**: the expected number of times a task is performed annually within a job
8
+ * **Task share (π)**: the proportion of total labor input allocated to the task
9
+
10
+ Under a homogeneous task-duration assumption, task shares can be interpreted as time allocations across tasks within occupations.
11
+
12
+ These measures enable a granular analysis of the internal structure of work and support applications such as AI exposure measurement, workforce decomposition, and automation targeting.
13
+
14
+ ---
15
+
16
+ ## Citation
17
+
18
+ If you use this data, please cite:
19
+
20
+ Bouquet, Pierre and Sheffi, Yossi (2026).
21
+ *Measuring the Intensive Margin of Work: Task Shares and Concentration.*
22
+ MIT Center for Transportation & Logistics Research Paper No. 2026/004.
23
+ [SSRN](https://ssrn.com/abstract=6174538) | [DOI](http://dx.doi.org/10.2139/ssrn.6174538)
24
+
25
+ ---
26
 
27
  ## Data Description
28
 
29
+ Each dataset is defined at the **job–task level** and is derived from O*NET task frequency survey responses.
30
+
31
+ ### Core Measures
32
+
33
+ * **Task flow (μ)**
34
+ Expected annual number of occurrences of a task within an occupation
35
+
36
+ * **Task share (π)**
37
+ Share of total labor input allocated to the task
38
+ (interpretable as a time share under homogeneous task duration)
39
+
40
+ ---
41
+
42
+ ## Coverage
43
+
44
+ Data is provided for multiple O*NET releases (from version 20.1 onward).
45
+ Each version corresponds to a specific O*NET database release and may differ in:
46
+
47
+ * Task definitions
48
+ * Occupation coverage
49
+ * Survey responses
50
+
51
+ ---
52
+
53
+ ## Data Files
54
+
55
  ### Mean Estimates
 
56
 
57
+ We provide mean estimates for each O*NET version for the following metrics:
58
+
59
+ #### Task flow (mean estimates)
60
+
61
+ ```
62
+ task_labor_input_mean_estimates/{ONET_VERSION}/
63
+ ONET_{ONET_VERSION}_weight_mode_STANDARD_task_flow_mean_estimates.csv
64
+ ```
65
+
66
+ #### Task labor input share (mean estimates)
67
+
68
+ ```
69
+ task_labor_input_mean_estimates/{ONET_VERSION}/
70
+ ONET_{ONET_VERSION}_weight_mode_STANDARD_task_labor_input_mean_estimates.csv
71
+ ```
72
+
73
+ ---
74
+
75
+ ## Data Schema
76
+
77
+ Each file contains the following columns:
78
+
79
+ * `onetsoc_code` — O*NET occupation code
80
+ * `task_id` — O*NET task identifier
81
+ * `mean` — Estimated value (flow or share)
82
 
83
+ For future releases (full estimators):
 
84
 
85
+ * `variance` — Estimated variance of the measure
86
 
87
  ---
88
 
89
  ## License
90
 
91
+ This work is licensed under a
92
+ [Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License (CC BY-NC-ND 4.0)](https://creativecommons.org/licenses/by-nc-nd/4.0/).