mirror of
https://github.com/shizand/statapp.git
synced 2024-12-23 12:12:59 +03:00
fix: ограничена генерация чисел до сотых (#48)
В качестве решения выбрано округление до сотых Closes #32
This commit is contained in:
parent
0a32e4baee
commit
0779941dc9
@ -74,7 +74,7 @@ class MainWindow(QMainWindow):
|
||||
gw = GenerateWindow()
|
||||
if gw.exec():
|
||||
y = np.random.normal(gw.mat, gw.deviation, size=(gw.count, 1))
|
||||
self.model.updateAllData(y)
|
||||
self.model.updateAllData(y.round(2))
|
||||
self.isDataChanged = True
|
||||
|
||||
@Slot()
|
||||
@ -107,7 +107,7 @@ class MainWindow(QMainWindow):
|
||||
|
||||
data = self.model.getData()
|
||||
|
||||
x_arr = x_arr.reshape(len(x_arr), 1)
|
||||
x_arr = x_arr.reshape(len(x_arr), 1).round(2)
|
||||
# dd = dd.reshape(len(dd), 1)
|
||||
data = np.concatenate((data, x_arr), axis=1)
|
||||
# data = np.concatenate((data, dd), axis=1)
|
||||
|
Loading…
Reference in New Issue
Block a user