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+'SEBS/vaio-i7/20160117_153630','SEBS_1',
00021 D+'DTAP/vaio-i7/20160117_175721','DTAP_1'
00022 ]
00023
00024
00025
00026
00027 title = '"cumberland map, 4 robots"'
00028
00029
00030
00031
00032 cmd = 'Rscript boxplots.R ' + title + ' '
00033 lfiles = ""
00034
00035 for i in range(0,len(L)/2):
00036 lfiles = lfiles + '%s_idleness.csv %s ' %(L[i*2],L[i*2+1])
00037
00038 print cmd+lfiles
00039 os.system(cmd+lfiles)
00040
00041 os.system('evince Rplots.pdf &')
00042