Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,18 +14,18 @@ def main():
|
|
14 |
st.title("agent Analysis")
|
15 |
|
16 |
with st.form("questionaire"):
|
17 |
-
rating= st.slider("
|
18 |
-
acs= st.slider("
|
19 |
-
kill = st.slider("
|
20 |
-
death = st.slider("
|
21 |
-
assist = st.slider("
|
22 |
-
kast = st.slider("
|
23 |
-
adr = st.slider("
|
24 |
-
hs = st.slider("
|
25 |
-
fk = st.slider("
|
26 |
-
fd = st.slider("
|
27 |
|
28 |
-
map = st.selectbox("map", unique_map)
|
29 |
player = st.selectbox("player", unique_player)
|
30 |
|
31 |
|
|
|
14 |
st.title("agent Analysis")
|
15 |
|
16 |
with st.form("questionaire"):
|
17 |
+
rating= st.slider("Rating in game", min_value=0.01, max_value=2.5)
|
18 |
+
acs= st.slider("Average Combat Score", min_value=35, max_value=450)
|
19 |
+
kill = st.slider("Number of Kill Accumulated", min_value=0, max_value=50)
|
20 |
+
death = st.slider("Number of Death Accumulated", min_value=0, max_value=40)
|
21 |
+
assist = st.slider("Number of Assist Accumulated", min_value=0, max_value=40)
|
22 |
+
kast = st.slider("Percentage of Kill, Assist, Survive, Trade", min_value=10, max_value=100)
|
23 |
+
adr = st.slider("Average damage dealt during a game", min_value=20, max_value=300)
|
24 |
+
hs = st.slider("Headshot percentage", min_value=0, max_value=75)
|
25 |
+
fk = st.slider("First kill count", min_value=0, max_value=15)
|
26 |
+
fd = st.slider("First death count", min_value=0, max_value=15)
|
27 |
|
28 |
+
map = st.selectbox("Name of map played", unique_map)
|
29 |
player = st.selectbox("player", unique_player)
|
30 |
|
31 |
|