WORKING!!!!

This commit is contained in:
ltcptgeneral 2019-03-21 17:25:16 -05:00
parent 4cc1ad28fe
commit 52c3ddd2d6
2 changed files with 35 additions and 29 deletions

View File

@ -67,11 +67,13 @@ def titanservice():
file_list = glob.glob(source_dir + '/*.csv') #supposedly sorts by alphabetical order, skips reading teams.csv because of redundancy
data = []
files = [fn for fn in glob.glob('data/*.csv')
if not (os.path.basename(fn).startswith('teams') or os.path.basename(fn).startswith('match') or os.path.basename(fn).startswith('notes') or os.path.basename(fn).startswith('observationType') or os.path.basename(fn).startswith('teamDBRef'))] #scores will be handled sperately
if not (os.path.basename(fn).startswith('scores') or os.path.basename(fn).startswith('teams') or os.path.basename(fn).startswith('match') or os.path.basename(fn).startswith('notes') or os.path.basename(fn).startswith('observationType') or os.path.basename(fn).startswith('teamDBRef'))] #scores will be handled sperately
for i in files:
data.append(analysis.load_csv(i))
#print(files)
stats = []
measure_stats = []
teams = analysis.load_csv("data/teams.csv")
@ -129,10 +131,14 @@ def titanservice():
for i in range(len(scores)):
#print(scores)
ofbest_curve = [None]
r2best_curve = [None]
line = measure[i]
line = scores[i]
#print(line)
#print(line)