()
| 31 | * Get manually input Iris data from the input boxes. |
| 32 | */ |
| 33 | export function getManualInputData() { |
| 34 | return [ |
| 35 | Number(document.getElementById('petal-length').value), |
| 36 | Number(document.getElementById('petal-width').value), |
| 37 | Number(document.getElementById('sepal-length').value), |
| 38 | Number(document.getElementById('sepal-width').value), |
| 39 | ]; |
| 40 | } |
| 41 | |
| 42 | const confusionMatrixCanvas = document.getElementById('confusion-matrix'); |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected