4 Commits

Author SHA1 Message Date
github-actions[bot]
c69229ce28 chore(main): release 0.12.3 (#120)
🤖 I have created a release *beep* *boop*
---


##
[0.12.3](https://github.com/shizand/statapp/compare/v0.12.2...v0.12.3)
(2024-02-14)


### Исправления

* добавлен более подробный вывод ошибок в консоль
([780d5b3](780d5b30fd))
* исправлен вывод коэффициента множественной детерминации
([260cc99](260cc99afa))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-02-14 15:47:17 +03:00
780d5b30fd fix: добавлен более подробный вывод ошибок в консоль 2024-02-14 15:40:41 +03:00
d6c03ca3c8 Merge remote-tracking branch 'origin/main' 2024-02-14 15:33:45 +03:00
260cc99afa fix: исправлен вывод коэффициента множественной детерминации 2024-02-14 15:33:24 +03:00
4 changed files with 14 additions and 2 deletions

View File

@@ -1,5 +1,13 @@
# Changelog # Changelog
## [0.12.3](https://github.com/shizand/statapp/compare/v0.12.2...v0.12.3) (2024-02-14)
### Исправления
* добавлен более подробный вывод ошибок в консоль ([780d5b3](https://github.com/shizand/statapp/commit/780d5b30fdc271f670c09369c1a0a692f89e7fc2))
* исправлен вывод коэффициента множественной детерминации ([260cc99](https://github.com/shizand/statapp/commit/260cc99afa3e5bc0aaf0fbad8870eebd909e558c))
## [0.12.2](https://github.com/shizand/statapp/compare/v0.12.1...v0.12.2) (2024-02-12) ## [0.12.2](https://github.com/shizand/statapp/compare/v0.12.1...v0.12.2) (2024-02-12)

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "statapp" name = "statapp"
version = "0.12.2" version = "0.12.3"
description = "" description = ""
authors = [ authors = [
"Maxim Slipenko <statapp@maks1ms.addy.io>" "Maxim Slipenko <statapp@maks1ms.addy.io>"

View File

@@ -58,7 +58,7 @@ class PolynomWindow(QDialog):
self.ui.residualVarianceValueLabel.setText(str(result.residualVariance)) self.ui.residualVarianceValueLabel.setText(str(result.residualVariance))
self.ui.scaledResidualVarianceValueLabel.setText(str(result.scaledResidualVariance)) self.ui.scaledResidualVarianceValueLabel.setText(str(result.scaledResidualVariance))
self.ui.fStatisticValueLabel.setText(str(result.fStatistic)) self.ui.fStatisticValueLabel.setText(str(result.fStatistic))
self.ui.rSquaredValueLabel.setText(str(result.scaledResidualVariance)) self.ui.rSquaredValueLabel.setText(str(result.rSquared))
predictionResult = prediction(data, result) predictionResult = prediction(data, result)

View File

@@ -17,6 +17,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
import logging
import os import os
import sys import sys
@@ -71,8 +72,11 @@ def onError(errorName: Exception):
QMessageBox.Ok, QMessageBox.Ok,
QMessageBox.Ok) QMessageBox.Ok)
logging.exception(errorName)
msgBox.exec_() msgBox.exec_()
class FloatDelegate(QStyledItemDelegate): class FloatDelegate(QStyledItemDelegate):
def __init__(self, parent=None): def __init__(self, parent=None):
QStyledItemDelegate.__init__(self, parent=parent) QStyledItemDelegate.__init__(self, parent=parent)