removing Lethality column from html page
This commit is contained in:
@@ -31,11 +31,7 @@
|
||||
[
|
||||
{
|
||||
searchable: false,
|
||||
targets: [1, 2, 3, 4, 5, 6]
|
||||
},
|
||||
{
|
||||
render: (data, type, row) => data.toFixed(2) + " %",
|
||||
targets: [6]
|
||||
targets: [1, 2, 3, 4, 5]
|
||||
}
|
||||
]
|
||||
});
|
||||
@@ -68,7 +64,6 @@
|
||||
<th>Disabilities</th>
|
||||
<th>Life Threatening Illnesses</th>
|
||||
<th>Company</th>
|
||||
<th>Lethality (%)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -982,20 +982,6 @@
|
||||
" return pd.concat([getAllVaers(), getNonDomesticVaers()])"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "e15bdcc0",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"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)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
@@ -1034,6 +1020,28 @@
|
||||
"### Batch codes"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "7edf87d7",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"def saveBatchCodeTable(vaers, file):\n",
|
||||
" batchCodeTable = BatchCodeTableFactory.createBatchCodeTable(vaers, dose = '1')\n",
|
||||
" batchCodeTable = batchCodeTable[\n",
|
||||
" [\n",
|
||||
" 'Total Number of Adverse Reaction Reports',\n",
|
||||
" 'Deaths',\n",
|
||||
" 'Disabilities',\n",
|
||||
" 'Life Threatening Illnesses',\n",
|
||||
" 'Company'\n",
|
||||
" ]]\n",
|
||||
" batchCodeTable.index.set_names(\"Batch\", inplace = True)\n",
|
||||
" display(batchCodeTable)\n",
|
||||
" IOUtils.saveDataFrame(batchCodeTable, file)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
|
||||
Reference in New Issue
Block a user