correcting parsing of DOSES_SHIPPED column of vaccineDistributionByZipcode table

This commit is contained in:
frankknoll
2023-09-10 19:05:37 +02:00
parent f855f8a5cf
commit efe812eb82

View File

@@ -254,8 +254,7 @@
"source": [
"vaccineDistributionByZipcode = pd.read_excel(\n",
" io = 'data/Amended-22-01962-Pfizer-2022-0426-pulled-2022-0823.xlsx',\n",
" usecols = ['PROVIDER_NAME', 'ZIPCODE_SHP', 'LOT_NUMBER', 'DOSES_SHIPPED'],\n",
" thousands = '.')\n",
" usecols = ['PROVIDER_NAME', 'ZIPCODE_SHP', 'LOT_NUMBER', 'DOSES_SHIPPED'])\n",
"vaccineDistributionByZipcode"
]
},