claritystorm commited on
Commit
baa870f
·
verified ·
1 Parent(s): 199dbb6

Update README

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: public-domain
4
+ task_categories:
5
+ - tabular-classification
6
+ - tabular-regression
7
+ tags:
8
+ - healthcare
9
+ - pharmacovigilance
10
+ - drug-safety
11
+ - fda
12
+ - adverse-events
13
+ - united-states
14
+ pretty_name: FDA FAERS Drug Adverse Events 2023
15
+ size_categories:
16
+ - 1M<n<10M
17
+ ---
18
+
19
+ # FDA FAERS Drug Adverse Events 2023
20
+
21
+ FDA Adverse Event Reporting System (FAERS) data for 2023 — cleaned, deduplicated,
22
+ and structured for pharmacovigilance and drug safety research.
23
+ 1.5M+ adverse event reports across 7 relational tables, with normalised drug names
24
+ and MedDRA preferred reaction terms.
25
+
26
+ **This repository contains a 1,000-row sample of the Demographics table (Public Domain).**
27
+ Full dataset (all 7 tables in CSV + Parquet) available at
28
+ [claritystorm.com/datasets/fda-faers](https://claritystorm.com/datasets/fda-faers).
29
+
30
+ ## Quick Start
31
+
32
+ ```python
33
+ from datasets import load_dataset
34
+ ds = load_dataset("claritystorm/fda-faers-drug-adverse-events")
35
+
36
+ import pandas as pd
37
+ df = pd.read_csv("sample_1000.csv")
38
+ print(df["sex_label"].value_counts())
39
+ print(df["age_years"].describe())
40
+ ```
41
+
42
+ ## Schema (DEMO table, selected fields)
43
+
44
+ | Field | Type | Description |
45
+ |-------|------|-------------|
46
+ | primaryid | string | Unique report identifier |
47
+ | caseid | string | Case ID (groups versions of same case) |
48
+ | caseversion | int | Case version (deduped: latest version kept) |
49
+ | fda_dt | string | FDA receipt date (YYYY-MM-DD) |
50
+ | rept_dt | string | Report date (YYYY-MM-DD) |
51
+ | age_years | float | Patient age in years (normalised) |
52
+ | sex_label | string | Male / Female / Unknown |
53
+ | reporter_type | string | Physician / Consumer / Pharmacist / etc. |
54
+ | report_type | string | Expedited / Periodic / Direct / Voluntary |
55
+ | wt_kg | float | Patient weight in kg (normalised) |
56
+ | _quarter | string | Source quarter (e.g. 2023Q1) |
57
+
58
+ ## Tables in Full Dataset
59
+
60
+ - **demo** — 1.5M+ rows: one row per deduplicated adverse event report
61
+ - **drug** — 7.4M+ rows: drugs involved in each report
62
+ - **reac** — 5.8M+ rows: MedDRA preferred reaction terms per report
63
+ - **outc** — 1.2M+ rows: serious outcome codes per report (Death, Hospitalization, etc.)
64
+ - **ther** — 2.6M+ rows: drug therapy start/end dates per report
65
+ - **indi** — 4.5M+ rows: drug indication (reason for use) per report
66
+ - **rpsr** — 52K+ rows: report source per report
67
+
68
+ All tables join on `primaryid`.
69
+
70
+ ## Source
71
+
72
+ US Food and Drug Administration (FDA), Adverse Event Reporting System (FAERS).
73
+ FDA FAERS data is a US federal government work in the **public domain** (17 U.S.C. 105).
74
+
75
+ Processed by [ClarityStorm Data](https://claritystorm.com).