Made cell stats more efficient

This commit is contained in:
Max Robinson
2021-02-11 14:07:59 -07:00
parent 9626cd54d6
commit 2e3ad6982d
5 changed files with 21 additions and 8 deletions

View File

@@ -4,7 +4,8 @@ const ChartController = require("./ChartController");
class CellsChart extends ChartController {
constructor() {
super("Organism Size / Composition");
super("Organism Size / Composition",
"Note: to maintain efficiency, species with very small populations are discarded when collecting cell statistics.");
}
setData() {
@@ -33,6 +34,8 @@ class CellsChart extends ChartController {
);
}
this.addAllDataPoints();
}
addDataPoint(i) {