displacing "Lower Confidence Limit of Proportional Reporting Ratio"
This commit is contained in:
@@ -449,13 +449,14 @@
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "eaf8fe21",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"prrByVaccineAndSymptom = pd.read_csv(\n",
|
||||
" 'data/safety-signal-sym.csv',\n",
|
||||
" index_col = 'VACCINE')\n",
|
||||
" 'data/tLCI.csv',\n",
|
||||
" usecols = lambda x: x != \"Unnamed: 0\",\n",
|
||||
" index_col = 'VAX_TYPE')\n",
|
||||
"prrByVaccineAndSymptom.index.name = 'VACCINE'\n",
|
||||
"prrByVaccineAndSymptom"
|
||||
]
|
||||
},
|
||||
@@ -499,7 +500,7 @@
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"prrBySymptomByVaccineWithHighPrrs = PrrSeriesTransformer.filterByHighPrrs(prrBySymptomByVaccine)\n",
|
||||
"prrBySymptomByVaccineWithHighPrrs = PrrSeriesTransformer.filterPrrs(prrBySymptomByVaccine, lambda prr: prr >= 2)\n",
|
||||
"prrBySymptomByVaccineWithHighPrrs"
|
||||
]
|
||||
},
|
||||
@@ -604,7 +605,7 @@
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"prrBySymptomByLotWithHighPrrs = PrrSeriesTransformer.filterByHighPrrs(prrBySymptomByLot)\n",
|
||||
"prrBySymptomByLotWithHighPrrs = PrrSeriesTransformer.filterPrrs(prrBySymptomByLot, lambda prr: prr > 1)\n",
|
||||
"prrBySymptomByLotWithHighPrrs"
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user