Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 import os
00008
00009
00010
00011
00012
00013
00014 D = '../results/cumberland_4/'
00015
00016
00017
00018
00019 L = [
00020 D+'DTAP/vaio-i7/20160117_175721',
00021 D+'DTAP/vaio-i7/20160117_184032',
00022 D+'DTAP/vaio-i7/20160117_192124'
00023 ]
00024
00025
00026
00027
00028 cmd = "Rscript anova_multi.R "
00029
00030 for i in range(0,len(L)):
00031 cmd = cmd + "%s_idleness.csv " %(L[i])
00032
00033 print cmd
00034 os.system(cmd)
00035