Instead of having "raw_df", "used_T", "not_used_T" and so on be attributes of the GUI MainWindow itself, there should be a data structure, so that accessing these variables would be something like
self.data.raw_df
self.data.used_T
In the process, can we come up with a consistent naming scheme for variables in the data?
Instead of having "raw_df", "used_T", "not_used_T" and so on be attributes of the GUI MainWindow itself, there should be a data structure, so that accessing these variables would be something like
In the process, can we come up with a consistent naming scheme for variables in the data?