binning
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
import pprint
|
||||
from itertools import cycle
|
||||
|
||||
from numpy import array, nan, isnan
|
||||
@ -259,9 +260,12 @@ class TgCalculator(QtWidgets.QDialog, Ui_Dialog):
|
||||
graph_id = self.new_graph_tau_combo.currentData()
|
||||
|
||||
print(graph_id)
|
||||
print(self._tg_value)
|
||||
print(self._hodge)
|
||||
for v in self._plots.values():
|
||||
# (data_plot, tg_plot, glass, liquid, tangent, fictive_cp, tnmh_fit)
|
||||
print(v.getData())
|
||||
print(self._plots)
|
||||
|
||||
ret_dic = {}
|
||||
|
||||
for key, tg in self._tg_value.items():
|
||||
plts = self._plots[key]
|
||||
ret_dic[key] = (tg, plts[1].getData(), plts[2].getData(), plts[3].getData(), plts[4].getData())
|
||||
|
||||
pprint.pprint(ret_dic)
|
||||
pprint.pprint(self._hodge)
|
||||
|
Reference in New Issue
Block a user