adding symptoms to UI

This commit is contained in:
frankknoll
2023-10-10 11:04:38 +02:00
parent 0270d385a2
commit 4371a4c4ec
4 changed files with 13498 additions and 132 deletions

View File

@@ -448,7 +448,7 @@
" 'data/ratings-1990-2022.csv',\n",
" index_col = 'VAX_TYPE',\n",
" usecols = lambda columnName: columnName != 'Unnamed: 0')\n",
"symptomByVaccine"
"# symptomByVaccine"
]
},
{
@@ -468,8 +468,11 @@
"metadata": {},
"outputs": [],
"source": [
"analyzer = Analyzer(symptomByVaccine)\n",
"\n",
"updateHtmlFile(\n",
" vaccines = Analyzer(symptomByVaccine).getVaccines(),\n",
" vaccines = analyzer.getVaccines(),\n",
" symptoms = analyzer.getSymptoms(),\n",
" htmlFile = \"../docs/SymptomsCausedByVaccines/index.html\",\n",
" lastUpdated = dateProvider.getLastUpdatedDataSource())"
]