diff --git a/statapp/__main__.py b/statapp/__main__.py index 6c57a79..476045d 100644 --- a/statapp/__main__.py +++ b/statapp/__main__.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import sys from PySide2 import QtCore diff --git a/statapp/about_window.py b/statapp/about_window.py index c60750b..86bf76f 100644 --- a/statapp/about_window.py +++ b/statapp/about_window.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import sys from PySide2.QtGui import QMovie from PySide2.QtWidgets import QMainWindow diff --git a/statapp/calculations.py b/statapp/calculations.py index c55cede..1ac339e 100644 --- a/statapp/calculations.py +++ b/statapp/calculations.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import numpy as np import pandas as pd diff --git a/statapp/correlation_analysis.py b/statapp/correlation_analysis.py index c252a45..fae0400 100644 --- a/statapp/correlation_analysis.py +++ b/statapp/correlation_analysis.py @@ -1,3 +1,22 @@ +# +# Copyright (c) 2023 Maxim Slipenko, Eugene Lazurenko. +# +# This file is part of Statapp +# (see https://github.com/shizand/statapp). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# from PySide2.QtWidgets import QDialog, QHeaderView from statapp.calculations import correlation_analysis diff --git a/statapp/generate_factor_window.py b/statapp/generate_factor_window.py index 10b78c4..3cbc6bb 100644 --- a/statapp/generate_factor_window.py +++ b/statapp/generate_factor_window.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# from PySide2.QtCore import Slot from PySide2.QtWidgets import QDialog diff --git a/statapp/generate_window.py b/statapp/generate_window.py index 7ef08f8..5958b0a 100644 --- a/statapp/generate_window.py +++ b/statapp/generate_window.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# from PySide2.QtCore import Slot from PySide2.QtWidgets import QDialog diff --git a/statapp/main_window.py b/statapp/main_window.py index e871787..10e738f 100644 --- a/statapp/main_window.py +++ b/statapp/main_window.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import numpy as np from PySide2.QtCore import Slot, QSize from PySide2.QtGui import QIcon diff --git a/statapp/models/combobox_model.py b/statapp/models/combobox_model.py index 4b2e6c6..0d34633 100644 --- a/statapp/models/combobox_model.py +++ b/statapp/models/combobox_model.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# from PySide2.QtCore import QAbstractListModel, Qt diff --git a/statapp/models/correlation_analysis_model.py b/statapp/models/correlation_analysis_model.py index 3b8403d..9b287ff 100644 --- a/statapp/models/correlation_analysis_model.py +++ b/statapp/models/correlation_analysis_model.py @@ -1,3 +1,22 @@ +# +# Copyright (c) 2023 Maxim Slipenko, Eugene Lazurenko. +# +# This file is part of Statapp +# (see https://github.com/shizand/statapp). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# from PySide2.QtCore import QModelIndex, Qt from statapp.models.ro_table_model import ROTableModel diff --git a/statapp/models/editable_table_model.py b/statapp/models/editable_table_model.py index d9fb7d2..115fbbc 100644 --- a/statapp/models/editable_table_model.py +++ b/statapp/models/editable_table_model.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import numpy as np from PySide2.QtCore import Qt diff --git a/statapp/models/fileslc_model.py b/statapp/models/fileslc_model.py index 683af7e..33a3c18 100644 --- a/statapp/models/fileslc_model.py +++ b/statapp/models/fileslc_model.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import numpy as np from PySide2.QtWidgets import QFileDialog, QMessageBox diff --git a/statapp/models/input_values_model.py b/statapp/models/input_values_model.py index ecf5eda..c257852 100644 --- a/statapp/models/input_values_model.py +++ b/statapp/models/input_values_model.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import numpy as np from PySide2.QtCore import Qt, QModelIndex diff --git a/statapp/models/ro_table_model.py b/statapp/models/ro_table_model.py index 6b28a90..6386295 100644 --- a/statapp/models/ro_table_model.py +++ b/statapp/models/ro_table_model.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import PySide2 import numpy as np from PySide2 import QtCore diff --git a/statapp/models/utils.py b/statapp/models/utils.py index d126af0..beb310b 100644 --- a/statapp/models/utils.py +++ b/statapp/models/utils.py @@ -15,6 +15,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# def yx_header(count): return ['Y'] + [f'X{i}' for i in range(1, count)] diff --git a/statapp/models/variance_analysis_model.py b/statapp/models/variance_analysis_model.py index 82f2273..baed769 100644 --- a/statapp/models/variance_analysis_model.py +++ b/statapp/models/variance_analysis_model.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# from PySide2.QtCore import QModelIndex from statapp.models.ro_table_model import ROTableModel diff --git a/statapp/ui/ui_about_window.py b/statapp/ui/ui_about_window.py index 5d88e69..8092997 100644 --- a/statapp/ui/ui_about_window.py +++ b/statapp/ui/ui_about_window.py @@ -16,7 +16,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# ################################################################################ diff --git a/statapp/ui/ui_correlation_analysis_window.py b/statapp/ui/ui_correlation_analysis_window.py index b71840a..a0e0528 100644 --- a/statapp/ui/ui_correlation_analysis_window.py +++ b/statapp/ui/ui_correlation_analysis_window.py @@ -1,4 +1,24 @@ # -*- coding: utf-8 -*- +# +# Copyright (c) 2023 Maxim Slipenko, Eugene Lazurenko. +# +# This file is part of Statapp +# (see https://github.com/shizand/statapp). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + ################################################################################ ## Form generated from reading UI file 'correlation_analysis_window.ui' @@ -39,4 +59,3 @@ class Ui_CorrelationAnalysisWindow(object): def retranslateUi(self, CorrelationAnalysisWindow): CorrelationAnalysisWindow.setWindowTitle(QCoreApplication.translate("CorrelationAnalysisWindow", u"\u041a\u043e\u0440\u0440\u0435\u043b\u044f\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437", None)) # retranslateUi - diff --git a/statapp/ui/ui_generate_factor_window.py b/statapp/ui/ui_generate_factor_window.py index 0ad3dd6..727b1b7 100644 --- a/statapp/ui/ui_generate_factor_window.py +++ b/statapp/ui/ui_generate_factor_window.py @@ -16,7 +16,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# ################################################################################ diff --git a/statapp/ui/ui_generate_window.py b/statapp/ui/ui_generate_window.py index 020fbe8..c3fbe49 100644 --- a/statapp/ui/ui_generate_window.py +++ b/statapp/ui/ui_generate_window.py @@ -16,7 +16,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# ################################################################################ diff --git a/statapp/ui/ui_main_window.py b/statapp/ui/ui_main_window.py index 9ca4770..89f3292 100644 --- a/statapp/ui/ui_main_window.py +++ b/statapp/ui/ui_main_window.py @@ -16,7 +16,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# ################################################################################ @@ -124,4 +125,3 @@ class Ui_MainWindow(object): self.modelmenu.setTitle(QCoreApplication.translate("MainWindow", u"\u041c\u043e\u0434\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", None)) self.helpmenu.setTitle(QCoreApplication.translate("MainWindow", u"\u0421\u043f\u0440\u0430\u0432\u043a\u0430", None)) # retranslateUi - diff --git a/statapp/ui/ui_variance_analysis_window.py b/statapp/ui/ui_variance_analysis_window.py index 0f6c488..80dd0b6 100644 --- a/statapp/ui/ui_variance_analysis_window.py +++ b/statapp/ui/ui_variance_analysis_window.py @@ -16,7 +16,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# ################################################################################ @@ -58,4 +59,3 @@ class Ui_VarianceAnalysisWindow(object): def retranslateUi(self, VarianceAnalysisWindow): VarianceAnalysisWindow.setWindowTitle(QCoreApplication.translate("VarianceAnalysisWindow", u"\u0414\u0438\u0441\u043f\u0435\u0440\u0441\u0438\u043e\u043d\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437", None)) # retranslateUi - diff --git a/statapp/utils.py b/statapp/utils.py index 2be4e27..7a90aa5 100644 --- a/statapp/utils.py +++ b/statapp/utils.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# import os import sys diff --git a/statapp/variance_analysis.py b/statapp/variance_analysis.py index 15d7c08..dc6adf6 100644 --- a/statapp/variance_analysis.py +++ b/statapp/variance_analysis.py @@ -15,7 +15,8 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see .# +# along with this program. If not, see . +# from PySide2.QtWidgets import QDialog, QHeaderView from statapp.calculations import variance_analysis