refactoring

This commit is contained in:
frankknoll
2022-02-21 13:29:51 +01:00
parent de556ef5d5
commit 0738412656

View File

@@ -666,28 +666,6 @@
" "
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "8e3bc9b3",
"metadata": {},
"outputs": [],
"source": [
"vaers = getVaersForYears([2020, 2021, 2022])\n",
"vaers"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "fbf5006a",
"metadata": {},
"outputs": [],
"source": [
"nonDomesticVaers = getNonDomesticVaers()\n",
"nonDomesticVaers"
]
},
{
"cell_type": "code",
"execution_count": null,
@@ -695,7 +673,7 @@
"metadata": {},
"outputs": [],
"source": [
"internationalVaers = pd.concat([vaers, nonDomesticVaers])\n",
"internationalVaers = pd.concat([getVaersForYears([2020, 2021, 2022]), getNonDomesticVaers()])\n",
"internationalVaers"
]
},