Experimental_data_processing
Help Shuhua process experimental data
This is a small application written for Shuhua; the purpose is to process experimental data.
The original data samples are the files test_data_1.xlsx and test_data_2.xlsx. The processing flow is to clean the original data and generate a file CLEAN_CHECK.xlsx for users to check whether the cleaning results are correct. If correct, you can proceed to the next calculation step. View calculation.jpg to view the detailed calculation process.
The main script is data_gui.py. This script is used to call other scripts and generate a GUI interface.
Use pyinstaller -i logo.ico -w data_gui.py to generate an installation package in the Windows system. The -i parameter is used to specify the icon of the exe file. The use of -w will not cause the "little black window" to appear when using the EXE file. The result of this operation is a folder. If you want to generate a separate executable file, you need to use the -F parameter.