Skip to content

Commit

Permalink
fix: исправлен вывод коэффициента множественной детерминации в "Преоб…
Browse files Browse the repository at this point in the history
…разования"
  • Loading branch information
Maks1mS committed Feb 15, 2024
1 parent bc4c46a commit da68523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statapp/polynoms/transform_polynom_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(self, data):
self.ui.residualVarianceValueLabel.setText(str(result.residualVariance))
self.ui.scaledResidualVarianceValueLabel.setText(str(result.scaledResidualVariance))
self.ui.fStatisticValueLabel.setText(str(result.fStatistic))
self.ui.rSquaredValueLabel.setText(str(result.scaledResidualVariance))
self.ui.rSquaredValueLabel.setText(str(result.rSquared))

self.model.dataChanged.connect(self.on_data_changed)

Expand Down

0 comments on commit da68523

Please sign in to comment.