2021-02-24 15:34:46 +01:00
|
|
|
<h4>Enter the names of two predictions to compare</h4>
|
|
|
|
|
|
|
|
<rb-form-input label="Prediction A" [(ngModel)]="nameA"></rb-form-input>
|
|
|
|
<rb-form-input label="Prediction B" [(ngModel)]="nameB"></rb-form-input>
|
2021-03-05 13:00:21 +01:00
|
|
|
<p *ngIf="delta !== undefined">
|
2021-02-24 15:34:46 +01:00
|
|
|
The result is {{ delta }}.
|
|
|
|
</p>
|
|
|
|
<rb-icon-button icon="forward-right" mode="primary" (click)="compare()">
|
|
|
|
Compare Predictions
|
|
|
|
</rb-icon-button>
|