Files
HowBadIsMyBatch/docs/SymptomsCausedByVaccines/js/PrrBySymptomTable.js
frankknoll 91c7bebeb5 refactoring
2023-10-15 15:44:16 +02:00

26 lines
577 B
JavaScript

class PrrBySymptomTable {
#delegate;
constructor(tableElement) {
this.#delegate = new PrrByKeyTable({
tableElement: tableElement,
keyColumnName: 'Symptom',
prrColumnName: 'Proportional Reporting Ratio > 1',
shallMarkRowIfPrrTooHigh: false
});
}
initialize() {
this.#delegate.initialize();
}
display(prrBySymptom) {
this.#delegate.display(prrBySymptom);
}
getDisplayedTableAsCsv(heading) {
return this.#delegate.getDisplayedTableAsCsv(heading);
}
}