do_anova_test_template.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 #
00003 # GIT version. Please do not edit this file.
00004 # Make a copy and edit the copy.
00005 #
00006 
00007 import os
00008 
00009 # Set here the experiments you want to analyze with ANOVA test
00010 
00011 # D = <directory of the experiments>
00012 
00013 # Example
00014 D = '../results/cumberland_4/'
00015 
00016 # L = <list of experiments to compare>
00017 
00018 #Example
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 # Run the R script
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 


patrolling_sim
Author(s):
autogenerated on Thu Jun 6 2019 20:27:09