-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
1808 lines (1170 loc) · 70.9 KB
/
main.py
File metadata and controls
1808 lines (1170 loc) · 70.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Current Tasks:
#
# Add SupaBase table compatibility
# Add duplicate entry replacement (Pit - if Team No. are the same, Match - if Round No. & Team No. are the same)
# Fix issue with pit data question insertion
# Fix premature question additions in the question editor
# Finish Data Editor
# Replace Visual Analysis with a Data Analysis page, that has both visual analysis and data prediction functionalities
# Implement Data Comparison functionality
#
# Backlog:
#
# Implement a columns separator, column items and expanders to the Question Editor
#
# Credits:
#
# - Supabase API
# - https://docs.streamlit.io/develop/tutorials/databases/supabase
#
############################################################################################################################################################################################################################################################################################
# Total rounds for the game
totalrounds = 0
# Importing libraries
import streamlit as st
import os
import time
import warnings
from io import StringIO
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sn
from supabase import create_client, Client
# UNUSED
# from sklearn.linear_model import LinearRegression as lreg
############################################################################################################################################################################################################################################################################################
# Program Start
st.set_page_config("Forge Scouting", layout="wide", page_icon="icon.png", initial_sidebar_state="expanded")
pd.set_option("display.max_rows", None, "display.max_columns", None)
warnings.filterwarnings("ignore")
import classified
adminpassword = classified.adminpassword
sidebar = st.sidebar
theme = """
[theme]
base="dark"
primaryColor="#ff3636"
backgroundColor="#0e0e0e"
secondaryBackgroundColor="#1e2029"
"""
def addLineGap(numoflines: int):
for i in range(numoflines):
st.write("")
@st.cache_data
def isNum(item):
try:
test = int(item)
return True
except:
return False
@st.cache_data
def toCSV(data):
return data.to_csv(index=False)#.encode("ISO-8859-1")
@st.cache_data
def toDF(data: dict):
return pd.DataFrame().from_dict(data)
@st.cache_data
def toDict(df: pd.DataFrame):
data = {}
for col in df.columns:
data[col] = [val for val in df[col]]
return data
@st.cache_data
def cleanData(data: dict):
newdata = {}
for col in data:
if "Unnamed: " != col[:9]:
newdata[col] = data[col]
if type(newdata[col]) != list:
newdata[col] = [newdata[col]]
return newdata
def gitpull(repo: str = None):
if repo:
os.system(f"git pull {repo}")
else:
os.system("git pull")
def gitpush(savemsg: str ="Remote Update"):
os.system("git add .")
os.system(f"git commit -m \"{savemsg}\"")
os.system("git push")
os.system("git pull")
def savequestions(pitq, matchq):
writequestions = f"""
pitq = {pitq}
matchq = {matchq}
"""
print(writequestions)
try:
open("questions.py", "w").write(writequestions)
print("Questions Saved.")
except:
print("Questions could not be saved.")
def savedata(pitdata: dict, matchdata: dict):
pitdf = toDF(pitdata)
matchdf = toDF(matchdata)
pitcsv = toCSV(pitdf)
matchcsv = toCSV(matchdf)
try:
open("pitdata.csv", "w").write(str(pitcsv))
print("Pit data saved successfully.")
except:
print("There was an error in saving pit data.")
try:
open("matchdata.csv", "w").write(str(matchcsv))
print("Match data saved successfully.")
except:
print("There was an error in saving match data.")
# Supabase Connection
@st.cache_resource
def sbconnection(url, key):
url = st.secrets["SUPABASE_URL"]
key = st.secrets["SUPABASE_KEY"]
return create_client(url, key)
@st.cache_data(ttl=300)
def query(tablename, getData=True):
if getData:
return supabase.table(tablename).select("*").execute().data
else:
return supabase.table(tablename).select("*").execute()
sburl = st.secrets["SUPABASE_URL"]
sbkey = st.secrets["SUPABASE_KEY"]
supabase = sbconnection(sburl, sbkey)
url: str = os.environ.get(sburl)
key: str = os.environ.get(sbkey)
supabase: Client = create_client(sburl, sbkey)
if ["pitq", "matchq", "pitdata", "matchdata", "robotphotos", "admin"] not in st.session_state:
import questions
st.session_state.pitq = questions.pitq
st.session_state.matchq = questions.matchq
st.session_state.pitdata = toDict(pd.read_csv("pitdata.csv"))
#st.session_state.matchdata = toDict(pd.read_csv("matchdata.csv"))
#st.session_state.pitdata = query("pitdata")[0]
st.session_state.matchdata = query("matchdata")[0]
st.session_state.pitdata = cleanData(st.session_state.pitdata)
st.session_state.matchdata = cleanData(st.session_state.matchdata)
st.session_state.robotphotos = {}
st.session_state.admin = False
#st.session_state.pitdata = query("pitdata")[0]
st.session_state.matchdata = query("matchdata")[0]
if st.session_state.pitdata == {}:
for i in st.session_state.pitq:
st.session_state.pitdata[i] = []
if st.session_state.matchdata == {}:
for i in st.session_state.matchq:
st.session_state.matchdata[i] = []
access = sidebar.expander("**:red[Login as Admin...]**")
accesslvl = access.radio("**Access Level:**", ["Member", "Admin"])
pages = {
"user": [":blue[**Home**]", "**Add an Entry**", "**View Data**"],
"admin": [":blue[**Home**]", "**Add an Entry**", "**View Data**", "**Question Editor (:red[OFFLINE ONLY])**"],
"dev": [":blue[**Home**]", "**Add an Entry**", "**View Data**", "**Robot Photos**", "**Data Comparison**", "**Visual Analysis**", "**Data Editor**", "**Question Editor (:red[OFFLINE ONLY])**"]
}
if accesslvl == "Admin":
password = access.text_input("**Enter Admin Password:**", placeholder="Enter Password")
if password == adminpassword:
st.session_state.admin = True
elif password != "":
access.error("Incorrect admin password.")
if st.session_state.admin:
if access.checkbox("Developer Mode"):
selectedpage = sidebar.radio("Navigation:", pages['dev'])
else:
selectedpage = sidebar.radio("Navigation:", pages['admin'])
else:
selectedpage = sidebar.radio("Navigation:", pages['user'])
pitcols = []
for i in st.session_state.pitdata.keys():
pitcols.append(i)
matchcols = []
for i in st.session_state.matchdata.keys():
matchcols.append(i)
if sidebar.button("**Refresh Page**"):
sidebar.success("Page refreshed successfully.")
if selectedpage == ":blue[**Home**]":
st.title(":red[Forge] :blue[Scouting]")
st.subheader("**Use the sidebar on the left to navigate the site.**")
st.write("---")
else:
st.title(selectedpage)
st.write("---")
if selectedpage == "**Add an Entry**":
datasect = st.radio("**Selected Dataset:**", ["Pit Data", "Match Data"])
inputs = []
resetinputs = st.checkbox("**:red[Reset] All Inputs**")
if resetinputs:
st.success("**Inputs reset successfully. Uncheck the \"Reset All Inputs\" box to continue.**")
else:
c1, c2 = st.columns(2)
stcol = c1
stcolnum = 1
if datasect == "Pit Data":
for q in st.session_state.pitq:
if st.session_state.pitq[q]["Type"] in ["Header", "Columns Separator", "Columns Item"]:
if st.session_state.pitq[q]["Type"] == "Header":
st.write("---")
st.header(q)
st.write("---")
addLineGap(2)
c1, c2 = st.columns(2)
stcol = c1
stcolnum = 1
else:
if st.session_state.pitq[q]["Type"] == "Number Input":
uin = str(stcol.number_input(f"**{q}**", st.session_state.pitq[q]["Minimum"], st.session_state.pitq[q]["Maximum"], step=1))
elif st.session_state.pitq[q]["Type"] == "Text Input":
uin = stcol.text_input(f"**{q}**", max_chars=st.session_state.pitq[q]["Character Limit"])
elif st.session_state.pitq[q]["Type"] == "Multiple Choice":
uin = stcol.radio(f"**{q}**", st.session_state.pitq[q]["Options"], index=st.session_state.pitq[q]["DefaultIndex"])
elif st.session_state.pitq[q]["Type"] == "Selection Box":
uin = stcol.selectbox(f"**{q}**", st.session_state.pitq[q]["Options"], index=st.session_state.pitq[q]["DefaultIndex"])
elif st.session_state.pitq[q]["Type"] == "Checkbox":
uin = stcol.checkbox(f"**{q}**", str(st.session_state.pitq[q]["DefaultIndex"]))
inputs.append(uin)
if stcolnum == 1:
stcolnum = 2
stcol = c2
addLineGap(2)
else:
c1, c2 = st.columns(2)
stcol = c1
stcolnum = 1
stcol = c1
if not resetinputs and st.button("**Submit Data**", use_container_width=True):
try:
for x, y in zip(st.session_state.pitdata.keys(), inputs):
st.session_state.pitdata[x].append(y)
savedata(st.session_state.pitdata, st.session_state.matchdata)
st.session_state.pitdata = pd.read_csv("pitdata.csv")
st.session_state.matchdata = pd.read_csv("matchdata.csv")
st.success("**Submission saved successfully.**")
except:
st.error("**Could not save your submission. Please try again.**")
else:
totalpts = 0
for q in st.session_state.matchq:
if st.session_state.matchq[q]["Type"] in ["Header", "Columns Separator", "Columns Item"]:
if st.session_state.matchq[q]["Type"] == "Header":
st.write("---")
st.header(q)
st.write("---")
addLineGap(2)
c1, c2 = st.columns(2)
stcol = c1
stcolnum = 1
else:
if st.session_state.matchq[q]["Type"] == "Number Input":
uin = str(stcol.number_input(f"**{q}**", st.session_state.matchq[q]["Minimum"], st.session_state.matchq[q]["Maximum"], step=1))
totalpts += int(uin)*st.session_state.matchq[q]["Point Value"]
elif st.session_state.matchq[q]["Type"] == "Text Input":
uin = stcol.text_input(f"**{q}**", max_chars=st.session_state.matchq[q]["Character Limit"])
elif st.session_state.matchq[q]["Type"] == "Multiple Choice":
uin = stcol.radio(f"**{q}**", st.session_state.matchq[q]["Options"], index=st.session_state.matchq[q]["DefaultIndex"])
elif st.session_state.matchq[q]["Type"] == "Selection Box":
uin = stcol.selectbox(f"**{q}**", st.session_state.matchq[q]["Options"], index=st.session_state.matchq[q]["DefaultIndex"])
elif st.session_state.matchq[q]["Type"] == "Checkbox":
uin = stcol.checkbox(f"**{q}**", str(st.session_state.matchq[q]["DefaultIndex"]))
inputs.append(uin)
if stcolnum == 1:
stcolnum = 2
stcol = c2
addLineGap(2)
else:
c1, c2 = st.columns(2)
stcol = c1
stcolnum = 1
stcol = c1
if not resetinputs and st.button("**Submit Data**", use_container_width=True):
try:
for x, y in zip(st.session_state.matchdata.keys(), inputs):
st.session_state.matchdata[x].append(y)
savedata(st.session_state.pitdata, st.session_state.matchdata)
st.session_state.matchdata = pd.read_csv("matchdata.csv")
st.success("**Submission saved successfully.**")
except:
st.error("**Could not save your submission. Please try again.**")
elif selectedpage == "**View Data**":
viewdata = sidebar.radio("Which data would you like to view?", ["Pit Data", "Match Data"])
st.header(viewdata)
if viewdata == "Pit Data":
data = st.session_state.pitdata
if viewdata == "Match Data":
data = st.session_state.matchdata
if type(data["Team No."]) == str:
teamnums = [data["Team No."]]
else:
teamnums = data["Team No."]
team = st.selectbox("Select a Team To View", pd.Series(["All"]+teamnums).unique())
ex1 = sidebar.expander("**Selected Columns:**")
st.write("---")
selectedcols = []
selectall = ex1.checkbox("Select All", value=True)
if type(data["Team No."]) == str:
teamnums = [data["Team No."]]
else:
teamnums = data["Team No."]
df = pd.DataFrame()
cols = []
if viewdata == "Pit Data":
for col in st.session_state.pitq:
if st.session_state.matchq[col]["Type"] != "Header":
try:
cols.append(st.session_state.pitq[col]["Display Name"])
except:
cols.append(col)
else:
for col in st.session_state.matchq:
if st.session_state.matchq[col]["Type"] != "Header":
try:
cols.append(st.session_state.matchq[col]["Display Name"])
except:
cols.append(col)
for key, col in zip(data, cols):
if type(data[key]) == list:
df[col] = data[key]
else:
df[col] = [data[key]]
for i in df.columns:
if i == "Round No." or i == "Team No.":
selectcol = True
else:
selectcol = ex1.checkbox(i, value=selectall)
if selectcol:
selectedcols.append(i)
numcols = []
for col in df.columns:
for i in range(len(df[col])):
if col != "Team No.":
if isNum(df[col][i]):
numcols.append(col)
else:
pass
for col in numcols:
for i in range(len(df[col])):
try:
df[col][i] = float(df[col][i])
except:
try:
df[col][i] = float(df[col][i].split()[0])
except:
df[col][i] = 0
rows = [i for i in range(len(df[selectedcols])) if df["Team No."][i] == team or team == "All"]
ex2 = sidebar.expander("**Sort By...**")
sortcols = []
enablesort = ex2.checkbox("**Sort Items**")
order = ex2.selectbox("**Order:**", ["Ascending", "Descending"])
numsortcols = ex2.slider("**Number of Columns to Sort By (Most to Least Priority):**", 1, 5)
for i in range(numsortcols):
sortcols.append(ex2.selectbox(f"**Sort {i+1}:**", [i for i in selectedcols if i not in ["Round No.", "Notes", "Notes:"] and i not in sortcols]))
if order == "Ascending":
ascending = True
else:
ascending = False
df = df[selectedcols]
if enablesort:
df = df.sort_values(by=sortcols, ascending=ascending, na_position="last")
st.dataframe(df, use_container_width=True, hide_index=True)
st.write(":grey[**Note**: Double click on a cell to view all of its contents if it is cut off.]")
st.write("---")
c1, c2, c3, c4 = st.columns(4)
scoutedrounds = 0
if len(st.session_state.matchdata["Team No."]) > 0:
scoutedrounds = len(pd.Series(st.session_state.matchdata['Round No.']).unique())
scoutedteams = 0
if len(df) > 0:
scoutedteams = len(df['Team No.'].unique())
c1.write(f"**Teams Scouted:** {scoutedteams}")
c2.write(f"**Total Entries:** {len(df)}")
c3.write(f"**Rounds Scouted:** {scoutedrounds}")
c4.write(f"**Total Rounds:** {totalrounds}")
c1, c2 = st.columns(2)
ex1, ex2 = c1.expander("**Download Data**"), c2.expander("**Import Data**")
datatxt = str(df[selectedcols])
datacsv = toCSV(df[selectedcols])
ex1.subheader("Download Data")
filename = ex1.text_input("Data File Name (no extension):", "scoutingdata")
downloadtxt = ex1.download_button("Download as Text File", datatxt, filename+".txt")
downloadcsv = ex1.download_button("Download as CSV File", datacsv, filename+".csv")
ex2.subheader("Import CSV Data")
ex2.write("**FILE COLUMN NAMES MUST MATCH DATA COLUMN NAMES**")
datafiles = []
for file in os.listdir():
if '.csv' in file[-4:]:
datafiles.append(file)
userfile = ex2.file_uploader("", type=["csv"])
if userfile != None:
if userfile.name[-4:] != ".csv":
st.subheader("This is not a valid .csv data file. Please use a different file.")
else:
strio = StringIO(userfile.getvalue().decode())
with open(userfile.name, "w") as file:
file.write(strio.read())
dataset = ex2.radio("**Import To:**", ["Pit Data", "Match Data"])
mode = ex2.radio("**Do you want to add to or replace the existing data?**", ["Add Data", "Replace Data"])
newdata = toDict(pd.read_csv(userfile.name))
newdata = cleanData(newdata)
for col in newdata:
coldata = []
for row in newdata[col]:
coldata.append(str(newdata[col][row]))
newdata[col] = coldata
if ex2.button("Import Data"):
if mode == "Replace Data":
if dataset == "Pit Data":
st.session_state.pitdata = {}
for col in newdata:
st.session_state.pitdata[col] = newdata[col]
savedata(st.session_state.pitdata, st.session_state.matchdata)
if dataset == "Match Data":
st.session_state.matchdata = {}
for col in newdata:
st.session_state.matchdata[col] = newdata[col]
savedata(st.session_state.pitdata, st.session_state.matchdata)
if mode == "Add Data":
if dataset == "Pit Data":
for col in newdata:
st.session_state.pitdata[col] += newdata[col]
if dataset == "Match Data":
for col in newdata:
st.session_state.matchdata[col] += newdata[col]
savedata(st.session_state.pitdata, st.session_state.matchdata)
if downloadtxt:
c1.success(f"Successfully downloaded data as {filename}.txt")
if downloadcsv:
c1.success(f"Successfully downloaded data as {filename}.txt")
elif selectedpage == "**Robot Photos**":
viewmode = st.radio("Do you want to add or view robot photos?", ["Add", "View"])
if viewmode == "Add":
teamno = st.number_input("**Team Number:**", 1, 10000)
image = st.file_uploader("**Upload the robot photo here:**", type=["jpg", "jpeg", "png", "webp"])
if st.button("Save Image"):
st.session_state.robotphotos[teamno] = image
st.write(image)
st.success("**Image Saved Successfully.**")
elif len(st.session_state.robotphotos) == 0:
st.subheader("Please upload a photo before viewing them.")
else:
teamno = st.selectbox("**Select a Team:**", st.session_state.robotphotos.keys())
st.image(st.session_state.robotphotos[teamno], teamno)
elif selectedpage == "**Data Comparison**":
st.title("TO BE UPDATED")
code = '''
viewdata = sidebar.radio("**Which data would you like to analyze?**", ["Pit Data", "Match Data"])
compmode = sidebar.radio("**Comparison Mode:**", ["Statistics", "Table of Averages"])
criteria = sidebar.expander("**Data Selection**")
if viewdata == "Pit Data":
cols = [col for col in st.session_state.pitdata.keys()]
else:
cols = [col for col in st.session_state.matchdata.keys()]
if ( viewdata == "Pit Data" and len(st.session_state.pitdata[cols[1]]) == 0 ) or ( viewdata == "Match Data" and len(st.session_state.matchdata[cols[1]]) == 0 ):
st.subheader("Please add data to this data set before trying to compare data (cannot compare data in an empty dataset).")
else:
if compmode == "Statistics":
selectedcols = []
criteria.write("**What data do you want to see?**")
with st.expander(f"**{viewdata}**"):
st.header(viewdata)
if viewdata == "Pit Data":
data = st.session_state.pitdata
dataq = st.session_state.pitq
if viewdata == "Match Data":
data = st.session_state.matchdata
dataq = st.session_state.matchq
for col in data:
if "Text Input" != dataq[col]["Type"] and criteria.checkbox(col, True):
selectedcols.append(col)
df = pd.DataFrame().from_dict(data)
st.dataframe(df[selectedcols], use_container_width=True, hide_index=True)
compareval = criteria.radio("**What data do you want to compare by?**", [col for col in df.columns if "Text Input" != dataq[col]["Type"]])
viewmode = criteria.radio("**Viewing Mode:**", ["Occurrences", "Percentages"])
showavg = criteria.checkbox("Show Averages For Numerical Values", True)
st.subheader(f"Comparison By `{compareval}` (`data: occurences/percentage`)")
c1, c2 = st.columns(2)
val1 = c1.selectbox(f"Value 1", df[compareval].unique())
for col in [col for col in selectedcols if col not in (compareval, "Team No.", "Round No.")]:
write = f"`{col}`: `"
if dataq[col]["Type"] == "Number Input" and showavg:
val1lst = [float(data[col][i]) for i in range(len(data[col])) if data[compareval][i] == val1]
avg = sum(val1lst)/len(val1lst)
write += f"{avg} AVG."
c1.write(write+"`")
else:
items = {}
for val in df[col].unique():
items[val] = 0
for item in range(len(data[col])):
if data[compareval][item] == val1:
items[data[col][item]] += 1
totalvals = 0
for val in items.values():
totalvals += val
for item, val in zip(items, items.values()):
if viewmode == "Percentages":
write += f"{item}: {round(val/totalvals*100, 2)}%, "
else:
write += f"{item}: {val}, "
c1.write(write[:-2]+"`")
val2 = c2.selectbox(f"Value 2", df[compareval].unique())
for col in [col for col in selectedcols if col not in (compareval, "Team No.", "Round No.")]:
write = f"`{col}`: `"
if dataq[col]["Type"] == "Number Input" and showavg:
val2lst = [float(data[col][i]) for i in range(len(data[col])) if data[compareval][i] == val2]
avg = sum(val2lst)/len(val2lst)
write += f"{avg} AVG."
c2.write(write+"`")
else:
items = {}
for val in df[col].unique():
items[val] = 0
for item in range(len(data[col])):
if data[compareval][item] == val2:
items[data[col][item]] += 1
totalvals = 0
for val in items.values():
totalvals += val
for item, val in zip(items, items.values()):
if viewmode == "Percentages":
write += f"{item}: {round(val/totalvals*100, 2)}%, "
else:
write += f"{item}: {val}, "
c2.write(write[:-2]+"`")
else:
data = {}
if viewdata == "Pit Data":
for col in st.session_state.pitdata:
if isNum(str(st.session_state.pitdata[col][0])):
data[col] = st.session_state.pitdata[col]
elif isNum(str(st.session_state.pitdata[col][0].split(" ")[0])):
data[col] = st.session_state.pitdata[col]
if viewdata == "Match Data":
for col in st.session_state.matchdata:
if isNum(str(st.session_state.matchdata[col][0])) and col not in ["Round No."]:
data[col] = st.session_state.matchdata[col]
elif isNum(str(st.session_state.matchdata[col][0].split(" ")[0])) and col not in ["Round No."]:
data[col] = st.session_state.matchdata[col]
selectedcols = []
selectall = criteria.checkbox("Select All", True)
for col in data:
if criteria.checkbox(col, selectall):
selectedcols.append(col)
df = pd.DataFrame()
compdata = {}
for col in selectedcols:
compdata[col] = []
compdata["Team No."] = pd.Series(data["Team No."]).unique()
for team in compdata["Team No."]:
for col in [c for c in selectedcols if c != "Team No."]:
numlist = []
for row in range(len(data[col])):
if data["Team No."][row] == team:
numlist.append(float(data[col][row]))
avg = np.mean(numlist)
compdata[col].append(avg)
for col in compdata:
df[col] = compdata[col]
st.dataframe(df, use_container_width=True, hide_index=True)
'''
elif selectedpage == "**Visual Analysis**":
plt.style.use('dark_background')
opts = sidebar.expander("Options")
shownull = opts.checkbox("Show percentage of missing data", True)
choosedata = opts.radio("What data set do you want to view?", ["Pit Data", "Match Data"])
if choosedata == "Match Data":
data = st.session_state.pitdata
else:
data = st.session_state.matchdata
cols = data.keys()
stat = opts.selectbox("Select A Data Catagory:", [i for i in cols if i not in ["Match No.", "Team No.", "Extra Notes"]])
numofteams = opts.number_input("How many teams do you want to show?", 1, 4)
teams = []
if shownull:
nullvals = []
else:
nullvals = ["N/A", "nan"]
st.title(f"Shown Statistic: *{stat}*")
st.write("---")
c1, c2 = st.columns(2)
for t in range(numofteams):
team = opts.selectbox(f"Team {t+1}:", [i for i in pd.Series(data["Team No."]).unique() if i not in teams])
teams.append(team)
cats = [cat for cat in pd.Series(data[stat]).unique() if cat not in nullvals]
statdata = [data[stat][i] for i in range(len(data[stat])) if data["Team No."][i] == team]
piedata = [0 for i in cats]
datainc = []
for x in range(len(cats)):
for y in statdata:
if y == cats[x]:
piedata[x] += 1
if piedata[x] > 0:
datainc.append(cats[x])
if t % 2 == 0:
tc1, tc2, tc3 = c1.columns(3)
tc2.title(f"{team}")
fig, ax = plt.subplots(figsize=(15, 3), frameon=False, edgecolor="white")
patches, texts, pcts = ax.pie([i for i in piedata if i > 0], labels=[i for i in cats if i in datainc], explode=[0.0025 for i in range(len(datainc))], autopct="%.2f", colors=sn.color_palette("dark"), wedgeprops={"linewidth": 2.5, "edgecolor": "white"})
for i, patch in enumerate(patches):
texts[i].set_color(patch.get_facecolor())
plt.setp(pcts, color="white", fontweight="bold")
plt.setp(texts, fontweight=600, fontsize=15)
c1.pyplot(fig)
else:
tc1, tc2, tc3 = c2.columns(3)
tc2.title(f"{team}")
fig, ax = plt.subplots(figsize=(15, 3), frameon=False, edgecolor="white")
patches, texts, pcts = ax.pie([i for i in piedata if i > 0], labels=[i for i in cats if i in datainc], explode=[0.0025 for i in range(len(datainc))], autopct="%.2f", colors=sn.color_palette("dark"), wedgeprops={"linewidth": 2.5, "edgecolor": "white"})
for i, patch in enumerate(patches):
texts[i].set_color(patch.get_facecolor())
plt.setp(pcts, color="white", fontweight="bold")
plt.setp(texts, fontweight=600)
c2.pyplot(fig)
elif selectedpage == "**Data Editor**":
dataselect = sidebar.radio("**Which dataset would you like to edit?**", ["Pit Data", "Match Data"])
if dataselect == "Pit Data":
data = st.session_state.pitdata
if dataselect == "Match Data":
data = st.session_state.matchdata
if len(data["Team No."]) == 0:
st.header("This dataset is empty right now.")
else:
if len(data["Team No."]) > 1:
editmodes = ["Replace", "Remove", "Clear Duplicates"]
else:
editmodes = ["Replace", "Remove"]
editmode = sidebar.radio("**Edit Mode:**", editmodes)
st.header(dataselect)
st.dataframe(data, use_container_width=True, hide_index=False)
st.write("---")
if editmode == "Replace":
replaceselect = st.radio("Would you like to replace a row or a specific answer?", ["Row", "Answer"])
elif editmode == "Remove":
c1, c2 = st.columns(2)
removeselect = c1.selectbox("Would you like to remove a row or a specific answer?", ["Row", "Answer"])
if removeselect == "Row":
if dataselect == "Pit Data":
row = c2.number_input("What row would you like to remove?", min_value=0, max_value=( len(st.session_state.pitdata["Team No."]) - 1 ), step=1)
if st.button(f"Remove Row {row}"):
for col in st.session_state.pitdata:
st.session_state.pitdata[col].pop(row)