renaming VAX_LOT column to BATCH

This commit is contained in:
frankknoll
2022-02-12 21:45:58 +01:00
parent a33059bb4e
commit af417f3148
3 changed files with 4 additions and 3 deletions

View File

@@ -45,7 +45,7 @@
input.focus();
input.select();
}
$(document).ready(function () {
loadBatchCodeTable();
selectInput();
@@ -62,7 +62,7 @@
<table class="display" id="batchCodeTable">
<thead>
<tr>
<th>VAX_LOT</th>
<th>BATCH</th>
<th>ADRs</th>
<th>DEATHS</th>
<th>DISABILITIES</th>

File diff suppressed because one or more lines are too long

View File

@@ -964,6 +964,7 @@
"source": [
"def saveBatchCodeTable(vaers, file):\n",
" batchCodeTable = BatchCodeTableFactory.createBatchCodeTable(vaers, dose = '1')\n",
" batchCodeTable.index.set_names(\"BATCH\", inplace = True)\n",
" display(batchCodeTable)\n",
" IOUtils.saveDataFrame(batchCodeTable, file)"
]