refining some tests

This commit is contained in:
frankknoll
2023-03-24 23:36:33 +01:00
parent 78a94e113b
commit 0ec8d406c9
5 changed files with 95 additions and 2 deletions

View File

@@ -23,6 +23,32 @@
"from HistogramFactoryAndPersister import createAndSaveGlobalHistograms, createAndSaveHistogramsForCountries"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "0cb5849c",
"metadata": {},
"outputs": [],
"source": [
"country_By_Clicked_Batchcode = pd.read_csv('data/Country By Clicked Batchcode.csv', header=[0, 1], index_col=0, skiprows=6)\n",
"country_By_Clicked_Batchcode.drop(index='Clicked Batchcode', inplace=True)\n",
"country_By_Clicked_Batchcode.index.rename('Clicked Batchcode', inplace=True)\n",
"country_By_Clicked_Batchcode"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b5066a92",
"metadata": {},
"outputs": [],
"source": [
"country_By_Batchcode_Search_Term = pd.read_csv('data/Country By Batchcode Search Term.csv', header=[0, 1], index_col=0, skiprows=6)\n",
"country_By_Batchcode_Search_Term.drop(index='Batchcode Search Term', inplace=True)\n",
"country_By_Batchcode_Search_Term.index.rename('Batchcode Search Term', inplace=True)\n",
"country_By_Batchcode_Search_Term"
]
},
{
"cell_type": "code",
"execution_count": null,
@@ -141,6 +167,46 @@
"internationalVaersCovid19"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "7a1023e8",
"metadata": {},
"outputs": [],
"source": [
"from BatchCodeTableFactory import BatchCodeTableFactory\n",
"\n",
"batchCodeTableFactory = BatchCodeTableFactory(internationalVaersCovid19)\n",
"batchCodeTable = batchCodeTableFactory.createGlobalBatchCodeTable()\n",
"batchCodeTable"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "0e7dae70",
"metadata": {},
"outputs": [],
"source": [
"from CompletedBatchcodeColumnAdder import CompletedBatchcodeColumnAdder\n",
"from BatchcodeCompletion import BatchcodeCompletion\n",
"\n",
"batchcodeCompletion = BatchcodeCompletion(batchCodeTable)\n",
"completedBatchcodeColumnAdder = CompletedBatchcodeColumnAdder(batchcodeCompletion.completeBatchcode)\n",
"country_By_Batchcode_Search_Term = completedBatchcodeColumnAdder.addCompletedBatchcodeColumn(country_By_Batchcode_Search_Term)\n",
"country_By_Batchcode_Search_Term"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "89c65459",
"metadata": {},
"outputs": [],
"source": [
"country_By_Batchcode_Search_Term.to_excel('tmp/Country_By_Batchcode_Search_Term.xlsx')"
]
},
{
"cell_type": "code",
"execution_count": null,