refactoring

This commit is contained in:
frankknoll
2023-10-04 00:06:23 +02:00
parent 12e3670a24
commit 4c2b235030

View File

@@ -221,7 +221,9 @@
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"df = regionCountsByClickedBatchcodeTable.loc[(slice(None), 'Germany', slice(None)), :].sort_values(by = ['REGION', 'REGION_COUNT_BY_VAX_LOT'], ascending = False)\n", "df = (regionCountsByClickedBatchcodeTable\n",
" .loc[(slice(None), 'Germany', slice(None)), :]\n",
" .sort_values(by = ['REGION', 'REGION_COUNT_BY_VAX_LOT'], ascending = False))\n",
"df" "df"
] ]
}, },