awacke1 commited on
Commit
75b4491
Β·
1 Parent(s): eb8835a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -1
app.py CHANGED
@@ -1,5 +1,7 @@
1
  import streamlit as st
2
  import pandas as pd
 
 
3
 
4
  PLAYERS = {
5
  "Player 1": {"Sketch": "🎨", "Character": "πŸ§™β€β™€οΈ", "Player Board": "πŸ“œ", "Action Dice": "🎲", "Health Tokens": "❀️", "Coin Tokens": "πŸ’°", "Battle Tokens": "βš”οΈ", "Attack": 5, "Defense": 3},
@@ -52,6 +54,22 @@ def battle_player_card():
52
  st.error("The monster defeated you.")
53
  save_data()
54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  def main():
56
  st.set_page_config(page_title="Player Cards and Monsters")
57
  st.title("Player Cards and Monsters")
@@ -70,7 +88,9 @@ def main():
70
  monster = get_random_monster()
71
  if monster:
72
  battle_player_card()
73
-
 
 
74
  if __name__ == "__main__":
75
  main()
76
 
 
1
  import streamlit as st
2
  import pandas as pd
3
+ import plotly.express as px
4
+ import plotly.graph_objects as go
5
 
6
  PLAYERS = {
7
  "Player 1": {"Sketch": "🎨", "Character": "πŸ§™β€β™€οΈ", "Player Board": "πŸ“œ", "Action Dice": "🎲", "Health Tokens": "❀️", "Coin Tokens": "πŸ’°", "Battle Tokens": "βš”οΈ", "Attack": 5, "Defense": 3},
 
54
  st.error("The monster defeated you.")
55
  save_data()
56
 
57
+ def load_and_display_player_data():
58
+ player_data = pd.read_csv("player_data.csv")
59
+ st.write("## Player Data")
60
+ st.write(player_data)
61
+
62
+ fig = px.treemap(player_data,
63
+ path=['Player'],
64
+ values='Health Tokens',
65
+ color='Attack',
66
+ color_continuous_scale='Blues',
67
+ title='Player Attack Power and Health Tokens')
68
+ fig.update_traces(textinfo='label+value+percent entry',
69
+ hovertemplate='<b>%{label}</b><br>Attack: %{color}<br>Health: %{value}<br>Percent: %{percentEntry:.2f}%<extra></extra>')
70
+ fig.update_layout(margin=dict(t=50, b=0, l=0, r=0), height=400)
71
+ st.plotly_chart(fig)
72
+
73
  def main():
74
  st.set_page_config(page_title="Player Cards and Monsters")
75
  st.title("Player Cards and Monsters")
 
88
  monster = get_random_monster()
89
  if monster:
90
  battle_player_card()
91
+
92
+ load_and_display_player_data()
93
+
94
  if __name__ == "__main__":
95
  main()
96