feat: добавлена возможность удалить факторы (#103)

Closes #102
This commit is contained in:
2024-02-03 16:20:33 +03:00
committed by GitHub
parent 240a517dd6
commit 30447a801a
2 changed files with 26 additions and 2 deletions

View File

@@ -33,3 +33,6 @@ class InputValuesModel(EditableTableModel):
def getY(self):
return self._data[:, 0]
def removeCol(self, index: int):
self.updateAllData(np.delete(self._data, index, axis=1))