Skip to content

Commit

Permalink
use correct values
Browse files Browse the repository at this point in the history
  • Loading branch information
shapiromatron committed Apr 11, 2024
1 parent a5932f6 commit 00bec5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class MaIndividualModels extends Component {
<FloatingPointHover value={model.results.bmd} />
</td>
<td>
<FloatingPointHover value={model.results.bmd} />
<FloatingPointHover value={model.results.bmdu} />
</td>
</tr>
);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Output/Multitumor/ResultTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class ResultTable extends Component {
</td>
<td>{ff(model.gof.p_value)}</td>
<td>
<FloatingPointHover value={model.bmdl} />
<FloatingPointHover value={model.fit.aic} />
</td>
<td>{ff(model.gof.residual[0])}</td>
<td>{ff(model.gof.roi)}</td>
Expand Down

0 comments on commit 00bec5e

Please sign in to comment.