displacing "Lower Confidence Limit of Proportional Reporting Ratio"
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -80,7 +80,7 @@ class PrrByKeyTable {
|
||||
}
|
||||
|
||||
#markRowIfPrrTooHigh({ prr, row }) {
|
||||
if (prr > 1.0) {
|
||||
if (prr >= 2.0) {
|
||||
$(row).addClass('prrTooHigh');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class PrrBySymptomTableView {
|
||||
return new PrrByKeyTable({
|
||||
tableElement: tableElement,
|
||||
keyColumnName: 'Symptom',
|
||||
prrColumnName: 'Proportional Reporting Ratio > 1',
|
||||
prrColumnName: 'Lower Confidence Limit of Proportional Reporting Ratio >= 2',
|
||||
shallMarkRowIfPrrTooHigh: false
|
||||
});
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class PrrByVaccineTableView {
|
||||
return new PrrByKeyTable({
|
||||
tableElement: tableElement,
|
||||
keyColumnName: 'Vaccine',
|
||||
prrColumnName: 'Proportional Reporting Ratio',
|
||||
prrColumnName: 'Lower Confidence Limit of Proportional Reporting Ratio',
|
||||
shallMarkRowIfPrrTooHigh: true
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user