FastDOL commited on
Commit
3fc77d9
·
verified ·
1 Parent(s): d673364

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +95 -3
README.md CHANGED
@@ -1,3 +1,95 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ size_categories:
6
+ - 100K<n<1M
7
+ task_categories:
8
+ - tabular-classification
9
+ - tabular-regression
10
+ tags:
11
+ - government
12
+ - regulation
13
+ - labor
14
+ - wage-theft
15
+ - whd
16
+ - dol
17
+ - compliance
18
+ - federal-data
19
+ - public-records
20
+ pretty_name: WHD Wage Theft Enforcement Actions by Employer
21
+ ---
22
+
23
+ # WHD Wage Theft Enforcement Actions by Employer
24
+
25
+ 40,000+ DOL Wage and Hour Division enforcement cases aggregated to the employer level. 323,514 US employers, $4.6 billion in back wages, 5.2 million affected employees.
26
+
27
+ ## What this dataset is
28
+
29
+ What does federal wage theft enforcement actually look like in aggregate? This dataset answers that question.
30
+
31
+ The Department of Labor's Wage and Hour Division (WHD) publishes enforcement data at the case level, which makes it hard to see the employer-level picture. This dataset aggregates 350,829 individual enforcement cases into a single row per US employer — making it trivial to identify repeat offenders, calculate cumulative back wages, and filter by geography or industry.
32
+
33
+ 323,514 US employers. $4.6 billion in total back wages owed. 5.2 million affected employees.
34
+
35
+ Source: [fastdol.com](https://fastdol.com).
36
+
37
+ ## What's in the data
38
+
39
+ Each row represents a single US employer with one or more WHD enforcement cases.
40
+
41
+ - **Employer identity**: name, city, state, ZIP, NAICS classification, parent company (where known)
42
+ - **WHD enforcement metrics**: case count, total back wages owed, employees affected, back wages per employee
43
+ - **OSHA cross-reference**: violation count and penalty totals where applicable
44
+
45
+ ## Findings to explore
46
+
47
+ **Repeat offenders are concentrated.** 20,880 employers have 2 or more WHD cases. These repeat offenders account for $1.0 billion in back wages — roughly 22% of all back wages in the dataset. Wage theft enforcement is not evenly distributed across employers.
48
+
49
+ **Cross-agency overlap.** Employers with multiple WHD cases are meaningfully more likely to also have OSHA enforcement records than single-case employers. Two independent federal regulatory systems — and there's a measurable correlation. The kind of cross-agency pattern this data is built to surface.
50
+
51
+ **Industry concentration.** Construction, food services, and admin/waste management dominate the repeat-offender population. These are sectors where WHD has historically focused enforcement and where the workforce is more vulnerable.
52
+
53
+ **State-level concentration.** California and Texas dominate by raw counts (large workforce, large enforcement footprint). Sorting by back wages per employer reveals where enforcement intensity is highest relative to employer count.
54
+
55
+ ## Suggested use cases
56
+
57
+ - Investigative journalism — identify repeat wage theft offenders by city, state, or industry
58
+ - Plaintiffs' attorneys — research defendant enforcement history
59
+ - Labor economics research — aggregate patterns in WHD enforcement
60
+ - ESG and supply-chain due diligence — screen vendors for wage compliance history
61
+ - Policy analysis — measure enforcement intensity across states and industries
62
+ - ML feature engineering — wage compliance as a model input
63
+
64
+ ## Loading the data
65
+
66
+ ```python
67
+ import pandas as pd
68
+ df = pd.read_csv('wage_theft_whd_enforcement_DOL.csv',
69
+ dtype={'naics_code': str})
70
+ ```
71
+
72
+ ## Methodology
73
+
74
+ Federal WHD enforcement data aggregated from the DOL WHISARD database. OSHA cross-reference uses normalized employer name + state + ZIP matching against the OSHA IMIS database. Entity resolution: when multiple WHD cases share the same normalized employer identity, they're aggregated to a single row with summed metrics.
75
+
76
+ Most NAICS codes and parent-company linkages are sparse — source agency records don't always include clean industry codes or parent identification. The OSHA cross-reference column is populated for every row but most employers (~95%) have zero OSHA records, since most workplace enforcement happens at one agency rather than several.
77
+
78
+ Counts reflect what WHD investigated and recorded.
79
+
80
+ Findings reported descriptively. Aggregate analysis of public federal enforcement data; not a statement about any specific employer's current operations or future risk. Not legal, financial, or underwriting advice.
81
+
82
+ ## About FastDOL
83
+
84
+ FastDOL aggregates federal enforcement records from 15 US agencies into queryable employer profiles with entity resolution.
85
+
86
+ - **Source**: [fastdol.com](https://fastdol.com)
87
+ - **Methodology**: [fastdol.com/methodology](https://fastdol.com/methodology)
88
+ - **API**: [fastdol.com/docs](https://fastdol.com/docs) — free tier available
89
+ - **Mirror on Kaggle**: [WHD Wage Theft Enforcement Actions by Employer](https://www.kaggle.com/datasets/benturneroffice365/whd-wage-theft-enforcement-actions-by-employer)
90
+
91
+ ## Citation
92
+
93
+ ```
94
+ FastDOL (2026), WHD Wage Theft Enforcement Actions by Employer, fastdol.com
95
+ ```