move edo stuff, that was in the wriong place after the merge, in the edo directory
This commit is contained in:
parent
d4765851d5
commit
cbb1771dd6
77 changed files with 0 additions and 0 deletions
|
|
@ -1,19 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from pylab import *
|
||||
|
||||
FILE_LOCATIONS = 'means_distances_results/files_description.txt'
|
||||
|
||||
data = []
|
||||
|
||||
locations = [ line.split()[0] for line in open( FILE_LOCATIONS ) ]
|
||||
|
||||
for cur_file in locations:
|
||||
data.append( [ float(line.split()[7]) for line in open( cur_file ).readlines() ] )
|
||||
|
||||
print locations
|
||||
#print data
|
||||
|
||||
boxplot( data )
|
||||
|
||||
show()
|
||||
Reference in a new issue