who-is-tyler-durden commited on
Commit
52a6503
·
verified ·
1 Parent(s): c4d26a9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -3
README.md CHANGED
@@ -1,3 +1,91 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - th
5
+ license: cc-by-4.0
6
+ tags:
7
+ - thailand
8
+ - bangkok
9
+ - road-safety
10
+ - traffic-injuries
11
+ - injury-surveillance
12
+ - public-health
13
+ - tabular-data
14
+ - csv
15
+ dataset_type: tabular
16
+ pretty_name: Thailand Road-Traffic Injury Aggregates (2018)
17
+ ---
18
+
19
+ # Thailand Road-Traffic Injury Aggregates (2018)
20
+
21
+ **Canonical dataset page (EN/TH):** https://bangkokfamilylawyer.com/datasets-injury-th/
22
+ **DOI (this version):** https://doi.org/10.5281/zenodo.17538573
23
+ **Concept DOI (latest):** https://doi.org/10.5281/zenodo.17538574
24
+
25
+ **Author:** Jean Maurice Cecilia Menzel
26
+ **Publisher:** AppDevBangkok / UdonLaw
27
+ **License:** CC BY 4.0
28
+
29
+ This repository provides aggregated indicators derived from Thailand’s official Injury Surveillance
30
+ data (Department of Disease Control, Ministry of Public Health) for **calendar year 2018**.
31
+
32
+ All outputs are privacy-preserving aggregates; individual-level records are **not** included.
33
+
34
+ ## Contents
35
+
36
+ Key CSV files (2018 slice):
37
+
38
+ - `province_2018.csv` — Cases by province.
39
+ - `bkk_quarter_2018.csv` — Bangkok cases by quarter.
40
+ - `age_bins_2018.csv` — Cases by age group.
41
+ - `sex_2018.csv` — Cases by sex.
42
+ - `mode_mix_bkk_2018.csv` — Mode / road-user mix for Bangkok.
43
+ - `top10_provinces_2018.csv` — Top 10 provinces by case count.
44
+ - `bkk_top_amphoe_2018.csv` — Leading Bangkok districts.
45
+ - `qa_year_counts_2018.csv` — Year-level row counts (QA).
46
+ - `qa_coverage_province_2018.csv` — Coverage / completeness indicators.
47
+ - `qa_summary.json` — Human-readable QA summary.
48
+
49
+ File names may be extended as new QA tables or visualizations are added.
50
+
51
+ ## Source Data
52
+
53
+ Source dataset (not redistributed here):
54
+
55
+ - **Injury Surveillance – DDC**
56
+ Injury Prevention Division, Department of Disease Control, Ministry of Public Health, Thailand.
57
+ Catalog: https://data.go.th/en/dataset/injury-surveillance
58
+
59
+ The original dataset remains under its own terms and conditions.
60
+ This repository only provides derived aggregates.
61
+
62
+ ## Methodology (summary)
63
+
64
+ - Filtered to events in **2018**.
65
+ - Robust date parsing with support for Thai formats and Buddhist Era → Gregorian conversion.
66
+ - Records with invalid or missing core fields are excluded from aggregates.
67
+ - Aggregations computed by:
68
+ - Province and (for Bangkok) district
69
+ - Quarter (Q1–Q4)
70
+ - Age groups
71
+ - Sex
72
+ - Selected mode / road-user categories
73
+ - Small cells may be combined or omitted to reduce re-identification risk.
74
+
75
+ For full details, see the canonical documentation at:
76
+
77
+ > https://bangkokfamilylawyer.com/datasets-injury-th/
78
+
79
+ ## How to use
80
+
81
+ Example (Python):
82
+
83
+ ```python
84
+ import pandas as pd
85
+ from datasets import load_dataset
86
+
87
+ ds = load_dataset(
88
+ "appdevbangkok/thailand-road-traffic-injury-aggregates-2018",
89
+ split="train"
90
+ )
91
+ # or load specific CSVs directly via raw URLs if preferred