Machine1_OpearationTimes=OperationTimes.get('Machine1',[])#Two lists are defined (Machine1_OpearationTimes, Machine2_OpearationTimes) with the operation times data of each machine
B.ks_test(Machine2_OpearationTimes)#It conducts the Kolmogorov-Smirnov test in the list with the operation times data
B.ks_test(Machine1_OpearationTimes)
lista=[]#It creates a list, that contains the outcome of the Kolmogorov-Smirnov tests
lista.append(A.ks_test(Machine1_OpearationTimes))
lista.append(A.ks_test(Machine2_OpearationTimes))
lista.append(B.ks_test(Machine1_OpearationTimes))
lista.append(B.ks_test(Machine2_OpearationTimes))
names=[]#It defines the following five lists
aParameters=[]
...
...
@@ -140,8 +145,8 @@ for element in nodes:
jsonFile.close()#It closes the file
#================================ Calling the ExcelOutput object, outputs the outcomes of the statistical analysis in Excel files =============================================#