claritystorm commited on
Commit
c8cd3ef
·
verified ·
1 Parent(s): e309c45

Update README

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: public-domain
4
+ task_categories:
5
+ - tabular-classification
6
+ - tabular-regression
7
+ tags:
8
+ - workplace-safety
9
+ - osha
10
+ - insurance
11
+ - esg
12
+ - compliance
13
+ - united-states
14
+ pretty_name: OSHA Workplace Injuries & Illness 2016-2023
15
+ size_categories:
16
+ - 1M<n<10M
17
+ ---
18
+
19
+ # OSHA Workplace Injuries & Illness 2016–2023
20
+
21
+ Every establishment-level workplace injury and illness record submitted to the OSHA
22
+ Injury Tracking Application (ITA) since 2016 — cleaned, deduplicated, and structured
23
+ for analysis. 2.38 million records across 8 survey years covering 600K+ unique
24
+ establishments with NAICS codes, DART/TCIR rates, and detailed injury/illness breakdowns.
25
+
26
+ **This repository contains a 1,000-row sample (Public Domain).**
27
+ Full dataset (CSV + Parquet) available at [claritystorm.com/datasets/osha-injuries](https://claritystorm.com/datasets/osha-injuries).
28
+
29
+ ## Quick Start
30
+
31
+ ```python
32
+ from datasets import load_dataset
33
+ ds = load_dataset("claritystorm/osha-workplace-injuries")
34
+
35
+ import pandas as pd
36
+ df = pd.read_csv("sample_1000.csv")
37
+ print(df.groupby("survey_year")["total_deaths"].sum())
38
+ print(df.groupby("survey_year")["dart_rate"].mean())
39
+ ```
40
+
41
+ ## Schema (selected fields)
42
+
43
+ | Field | Type | Description |
44
+ |-------|------|-------------|
45
+ | survey_year | int | OSHA reporting year (2016–2023) |
46
+ | estab_name | string | Establishment name |
47
+ | company_name | string | Parent company name |
48
+ | street_address | string | Street address |
49
+ | city | string | City |
50
+ | state | string | US state (2-letter code) |
51
+ | naics_code | string | 6-digit NAICS code (zero-padded) |
52
+ | industry_description | string | Industry description |
53
+ | size_class | string | Establishment size class |
54
+ | annual_average_employees | int | Annual average employee count |
55
+ | total_hours_worked | int | Total hours worked |
56
+ | no_injuries_illnesses | int | 1 if no recordable injuries/illnesses |
57
+ | total_deaths | int | Total workplace deaths |
58
+ | total_dafw_cases | int | Days Away From Work cases |
59
+ | total_djtr_cases | int | Job Transfer or Restriction cases |
60
+ | total_other_cases | int | Other recordable cases |
61
+ | total_dafw_days | int | Days away from work |
62
+ | total_djtr_days | int | Days of job transfer or restriction |
63
+ | total_injuries | int | Total injuries |
64
+ | total_poisonings | int | Poisoning cases |
65
+ | total_hearing_loss | int | Hearing loss cases |
66
+ | total_other_illnesses | int | Other illness cases |
67
+ | total_resp_conditions | int | Respiratory condition cases |
68
+ | total_skin_disorders | int | Skin disorder cases |
69
+ | dart_rate | float | DART rate per 100 FTE (derived) |
70
+ | tcir_rate | float | TCIR rate per 100 FTE (derived) |
71
+
72
+ ## Source
73
+
74
+ US Occupational Safety and Health Administration (OSHA), Injury Tracking Application (ITA).
75
+ OSHA ITA data is a US federal government work in the **public domain** (17 U.S.C. 105).
76
+
77
+ Processed by [ClarityStorm Data](https://claritystorm.com).