(points: Example2D[])
| 143 | } |
| 144 | |
| 145 | updatePoints(points: Example2D[]): void { |
| 146 | if (this.settings.noSvg) { |
| 147 | throw Error("Can't add points since noSvg=true"); |
| 148 | } |
| 149 | this.updateCircles(this.svg.select("g.train"), points); |
| 150 | } |
| 151 | |
| 152 | updateBackground(data: number[][], discretize: boolean): void { |
| 153 | let dx = data[0].length; |
no test coverage detected