Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -5,9 +5,18 @@ datasetLOINC = load_dataset("awacke1/LOINC-CodeSet-Value-Description.csv")
|
|
5 |
datasetSNOMED = load_dataset("awacke1/SNOMED-CT-Code-Value-Semantic-Set.csv")
|
6 |
#eCQM:
|
7 |
dataseteCQM = load_dataset("awacke1/eCQM-Code-Value-Semantic-Set.csv")
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
import os
|
13 |
import json
|
|
|
5 |
datasetSNOMED = load_dataset("awacke1/SNOMED-CT-Code-Value-Semantic-Set.csv")
|
6 |
#eCQM:
|
7 |
dataseteCQM = load_dataset("awacke1/eCQM-Code-Value-Semantic-Set.csv")
|
8 |
+
print(datasetLOINC)
|
9 |
+
print(datasetSNOMED)
|
10 |
+
print(dataseteCQM)
|
11 |
+
|
12 |
+
# play with some dataset tools before the show:
|
13 |
+
start_with_ar = datasetLOINC.filter(lambda example: example["Description"].startswith("Mental health"))
|
14 |
+
len(start_with_ar)
|
15 |
+
print(start_with_ar["Mental health"])
|
16 |
+
|
17 |
+
---
|
18 |
+
#Main Stage - Begin!
|
19 |
+
---
|
20 |
|
21 |
import os
|
22 |
import json
|