From 8bcfd8a875bd6b4ee9e77e221eae92d114ddcd0a Mon Sep 17 00:00:00 2001 From: MisterMLiL <eugenelazurenko@gmail.com> Date: Tue, 3 Oct 2023 13:48:29 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20"index=200=20is=20out?= =?UTF-8?q?=20of=20bounds"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- statapp/main_window.py | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/statapp/main_window.py b/statapp/main_window.py index f24ecbc..2659670 100644 --- a/statapp/main_window.py +++ b/statapp/main_window.py @@ -1,7 +1,7 @@ import numpy as np from PySide2.QtCore import Slot, QSize from PySide2.QtGui import QIcon -from PySide2.QtWidgets import QMainWindow, QMessageBox +from PySide2.QtWidgets import QMainWindow, QMessageBox, QAction from statapp.calculations import generate_x_values from statapp.generate_factor_window import GenerateFactorWindow @@ -26,6 +26,14 @@ class MainWindow(QMainWindow): icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off) self.setWindowIcon(icon) + self.generateXaction_action = self.findChild(QAction, 'generateXaction') + self.varianceAnalysisAction_action = self.findChild(QAction, 'varianceAnalysisAction') + self.correlationAnalisisAction_action = self.findChild(QAction, 'correlationAnalisisAction') + + self.generateXaction_action.setEnabled(False) + self.varianceAnalysisAction_action.setEnabled(False) + self.correlationAnalisisAction_action.setEnabled(False) + self.isDataChanged = False self.model = InputValuesModel() self.fileModel = FileSLCModel() @@ -34,6 +42,7 @@ class MainWindow(QMainWindow): @Slot() def on_openfileaction_triggered(self): current_data = self.model.getData() + data = np.array([]) if current_data.size > 1: file = '' if self.fileModel.file_name: @@ -53,15 +62,28 @@ class MainWindow(QMainWindow): return else: data = self.fileModel.loadFile() - if data is not None: + if data is not None and data.shape[0] > 0: self.model.updateAllData(data) self.isDataChanged = False else: data = self.fileModel.loadFile() - if data is not None: + if data is not None and data.shape[0] > 0: self.model.updateAllData(data) self.isDataChanged = False + if data.shape[1] == 1: + self.generateXaction_action.setEnabled(True) + self.varianceAnalysisAction_action.setEnabled(False) + self.correlationAnalisisAction_action.setEnabled(False) + elif data.shape[1] > 1: + self.generateXaction_action.setEnabled(True) + self.varianceAnalysisAction_action.setEnabled(True) + self.correlationAnalisisAction_action.setEnabled(True) + else: + self.generateXaction_action.setEnabled(False) + self.varianceAnalysisAction_action.setEnabled(False) + self.correlationAnalisisAction_action.setEnabled(False) + @Slot() def on_savefileaction_triggered(self): self.isDataChanged = not self.fileModel.saveFile(self.model.getData()) @@ -78,6 +100,7 @@ class MainWindow(QMainWindow): y = np.random.normal(gw.mat, gw.deviation, size=(gw.count, 1)) self.model.updateAllData(y.round(2)) self.isDataChanged = True + self.generateXaction_action.setEnabled(True) @Slot() def on_generateXaction_triggered(self): @@ -91,6 +114,8 @@ class MainWindow(QMainWindow): # dd = dd.reshape(len(dd), 1) data = np.concatenate((data, x_arr), axis=1) self.model.updateAllData(data) + self.varianceAnalysisAction_action.setEnabled(True) + self.correlationAnalisisAction_action.setEnabled(True) self.isDataChanged = True @Slot()