displacing "Lower Confidence Limit of Proportional Reporting Ratio"

This commit is contained in:
frankknoll
2023-11-24 00:12:53 +01:00
parent c834126726
commit fa058a30fd
8 changed files with 18766 additions and 252 deletions

File diff suppressed because one or more lines are too long

View File

@@ -80,7 +80,7 @@ class PrrByKeyTable {
}
#markRowIfPrrTooHigh({ prr, row }) {
if (prr > 1.0) {
if (prr >= 2.0) {
$(row).addClass('prrTooHigh');
}
}

View File

@@ -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
});
}

View File

@@ -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
});
}