From ec01f65e0e2e2e4205dd0c2e64c49062fbbbacfc Mon Sep 17 00:00:00 2001 From: Maxim Slipenko <no-reply@maxim.slipenko.com> Date: Sun, 31 Dec 2023 12:22:29 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D1=8B=20?= =?UTF-8?q?=D0=BB=D0=B8=D1=88=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=BC?= =?UTF-8?q?=D0=B5=D0=BD=D1=82=D0=B0=D1=80=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- statapp/__main__.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/statapp/__main__.py b/statapp/__main__.py index 5f50a77..85a118a 100644 --- a/statapp/__main__.py +++ b/statapp/__main__.py @@ -38,15 +38,6 @@ def main(): window = MainWindow() window.show() return app.exec_() - # n = 100 - # y = generateYValues(100, 5, n) - # x1 = generateXValues(20, 2, 0, y) - # x2 = generateXValues(10, 1, 0, y) - # data = np.concatenate([y, x1, x2], axis=1) -# - # result = linearPolynom(data) -# - # prediction(data, result) if __name__ == "__main__":