Zaktualizuj 'Front/src/app/app.component.ts'

This commit is contained in:
Marcin Szczepański 2020-06-08 21:56:18 +00:00
parent 4e071aeb03
commit 96fffa7d65

View File

@ -328,6 +328,6 @@ export class AppComponent implements OnInit {
this.matches.forEach(x => {
sum += Math.abs(x.goals - x.predictedGoals);
});
this.mae = Math.sqrt(sum / this.matches.length);
this.mae = (sum / this.matches.length);
}
}