adding CityCountsByBatchcodeTablesMerger

This commit is contained in:
frankknoll
2023-10-04 11:34:20 +02:00
parent 3f1f9ac19f
commit 5cd36b8e1e
5 changed files with 140 additions and 11 deletions

View File

@@ -249,6 +249,14 @@
" '../docs/data/barChartDescriptionTable.json')\n"
]
},
{
"cell_type": "markdown",
"id": "c5a66a3b",
"metadata": {},
"source": [
"# Google Analytics"
]
},
{
"cell_type": "code",
"execution_count": null,
@@ -283,6 +291,78 @@
"regionCountsByClickedBatchcodeTable4Germany.to_excel('tmp/regionCountsByClickedBatchcodeTable4Germany.xlsx')"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "3c05fcfc",
"metadata": {},
"outputs": [],
"source": [
"# VAX_LOT: EX8679\n",
"(regionCountsByClickedBatchcodeTable4Germany\n",
" .groupby('VAX_LOT')\n",
" .sum()\n",
" .sort_values(by = 'REGION_COUNT_BY_VAX_LOT', ascending = False))"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "370bf329",
"metadata": {},
"outputs": [],
"source": [
"(regionCountsByClickedBatchcodeTable4Germany\n",
" .loc[('EX8679', slice(None), slice(None)), :]\n",
" .sort_values(by = 'REGION_COUNT_BY_VAX_LOT', ascending = False))"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9740c40b",
"metadata": {},
"outputs": [],
"source": [
"from GoogleAnalytics.CityCountsByBatchcodeTablesMerger import CityCountsByBatchcodeTablesMerger\n",
"\n",
"cityCountsByClickedBatchcodeTable = CityCountsByBatchcodeTablesMerger.getCityCountsByClickedBatchcode('data/GoogleAnalytics')\n",
"cityCountsByClickedBatchcodeTable"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "0dac0ea6",
"metadata": {},
"outputs": [],
"source": [
"cityCountsByClickedBatchcodeTable_EX8679_Germany = cityCountsByClickedBatchcodeTable.loc[('EX8679', 'Germany', slice(None), slice(None)), :]\n",
"cityCountsByClickedBatchcodeTable_EX8679_Germany"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "8d7a8bbf",
"metadata": {},
"outputs": [],
"source": [
"cityCountsByClickedBatchcodeTable_EX8679_Germany.to_excel('tmp/cityCountsByClickedBatchcodeTable_EX8679_Germany.xlsx')"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "494943f3",
"metadata": {},
"outputs": [],
"source": [
"(cityCountsByClickedBatchcodeTable_EX8679_Germany\n",
" .sort_values(by = ['CITY_COUNT_BY_VAX_LOT'], ascending = False)\n",
" .to_excel('tmp/cityCountsByClickedBatchcodeTable_EX8679_Germany_sorted.xlsx'))"
]
},
{
"attachments": {},
"cell_type": "markdown",