Merge branch 'main' into pages

This commit is contained in:
frankknoll
2023-01-06 23:21:26 +01:00
2 changed files with 13 additions and 7 deletions

View File

@@ -45,6 +45,16 @@
"print('needsUpdate:', needsUpdate)" "print('needsUpdate:', needsUpdate)"
] ]
}, },
{
"cell_type": "code",
"execution_count": null,
"id": "194b7357",
"metadata": {},
"outputs": [],
"source": [
"years_from_2020_to_present = list(range(2020, datetime.now().year + 1))"
]
},
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
@@ -54,7 +64,7 @@
"source": [ "source": [
"updateVAERSFiles(\n", "updateVAERSFiles(\n",
" needsUpdate = needsUpdate,\n", " needsUpdate = needsUpdate,\n",
" years = [2022],\n", " years = years_from_2020_to_present,\n",
" workingDirectory = os.getcwd())" " workingDirectory = os.getcwd())"
] ]
}, },
@@ -65,7 +75,7 @@
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"internationalVaersCovid19 = getInternationalVaersCovid19(years = [2020, 2021, 2022])\n", "internationalVaersCovid19 = getInternationalVaersCovid19(years = years_from_2020_to_present)\n",
"internationalVaersCovid19" "internationalVaersCovid19"
] ]
}, },
@@ -138,7 +148,7 @@
"name": "python", "name": "python",
"nbconvert_exporter": "python", "nbconvert_exporter": "python",
"pygments_lexer": "ipython3", "pygments_lexer": "ipython3",
"version": "3.10.8 (main, Nov 24 2022, 14:13:03) [GCC 11.2.0]" "version": "3.10.8"
}, },
"vscode": { "vscode": {
"interpreter": { "interpreter": {

View File

@@ -1,9 +1,5 @@
jupyter notebook jupyter notebook
get VAERS data:
- download data (e.g. 2022VAERSData.zip) from https://vaers.hhs.gov/data/datasets.html and save and unzip in VAERS folder
FK-FIXME: FK-FIXME:
FK-TODO: FK-TODO: