eaglelandsonce commited on
Commit
00f664b
·
verified ·
1 Parent(s): 7f5192b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -7,7 +7,11 @@ import ast # To safely evaluate string literals as Python expressions
7
  st.set_page_config(layout="wide")
8
  st.title("Games - Gemini Ultra Simulator")
9
 
10
- """---------------------------------------------------------------------Clara (-3,3), Eddie (3,3), Sofia (-3,-3), Alex (3,-3)"""
 
 
 
 
11
 
12
  # Load the positions data from the specified path
13
  positions_df = pd.read_csv('./data/positions.csv')
@@ -153,6 +157,8 @@ if left_column.button('Pause' if not st.session_state['paused'] else 'Play'):
153
 
154
  # Placeholder for the Plotly chart in the right column
155
 
 
 
156
  chart_placeholder = right_column.empty()
157
 
158
  # Placeholder for displaying the data below the animation
 
7
  st.set_page_config(layout="wide")
8
  st.title("Games - Gemini Ultra Simulator")
9
 
10
+ """Clara (-3,3), Eddie (3,3), Sofia (-3,-3), Alex (3,-3)"""
11
+
12
+ positions_text = """Clara (-3,3), Eddie (3,3), Sofia (-3,-3), Alex (3,-3)"""
13
+
14
+
15
 
16
  # Load the positions data from the specified path
17
  positions_df = pd.read_csv('./data/positions.csv')
 
157
 
158
  # Placeholder for the Plotly chart in the right column
159
 
160
+ markdonw_position = right_column.markdown(f"```\n{positions_text}\n```")
161
+
162
  chart_placeholder = right_column.empty()
163
 
164
  # Placeholder for displaying the data below the animation