starting Safety Signal (All drugs)

This commit is contained in:
Frank Knoll
2024-07-10 23:45:21 +02:00
parent 9e473ea7b2
commit 915066ed14
10 changed files with 662 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
class PrrByVaccineProvider {
static getPrrByVaccine(symptom) {
return fetch(`./data/ProportionalReportingRatios/symptoms/${symptom}.json`).then(response => response.json());
}
static getPrrBySymptom(vaccine) {
return fetch(`./data/ProportionalReportingRatios/vaccines/${vaccine}.json`).then(response => response.json());
}
}