chrisvoncsefalvay commited on
Commit
0358745
1 Parent(s): 0612769

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -33,3 +33,29 @@ configs:
33
  - split: val
34
  path: data/val-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  - split: val
34
  path: data/val-*
35
  ---
36
+
37
+ # Dataset Card for {{ pretty_name | default("Dataset Name", true) }}
38
+
39
+ <!-- Provide a quick summary of the dataset. -->
40
+
41
+ This data set contains VAERS `SYMPTOM_TEXT` records paired with a list of potential outcomes.
42
+
43
+
44
+ ### Source Data
45
+
46
+ Data originates from [VAERS](https://vaers.hhs.gov).
47
+
48
+ ### Encoding
49
+
50
+ The `label` column comprises a 7-length binary array that comprises the following values:
51
+
52
+ | Name | Meaning | VAERS originating field |
53
+ | ---- | --- | --- | --- |
54
+ | `DIED` | Whether the patient died | `DIED` |
55
+ | `ER_VISIT` | Whether the patient has presented at an ER/ED | `ER_VISIT` and `ER_ED_VISIT` (depending on version) |
56
+ | `HOSPITAL` | True if the patient was admitted to hospital | `HOSPITAL` |
57
+ | `OFC_VISIT` | Whether the patient presented at a doctor's office | `OFC_VISIT` |
58
+ | `X_STAY` | True if the patient's existing hospital admission was prolonged in a manner attributed by the reporter to the report event | `X_STAY` |
59
+ | `DISABLE` | True if the patient continued, at the time of report, to experience a disability attributed by the reporter to the report event | `DISABLE` |
60
+ | `D_PRESENTED` | A derived field, `D_PRESENTED` is true if the patient presented at ER, a doctor's office or hospital. Automatically true if `X_STAY` is true. | None (derived field) |
61
+