TroglodyteDerivations commited on
Commit
4386263
1 Parent(s): 5b06383

Updated lines 297, 500 with: st.image("homer_plotly_visualizations_1.webp", caption="Homer Simpson Meta-Learning HRL Lecture Plotly 1", use_column_width=True) | st.image("homer_plotly_visualizations_2.webp", caption="Homer Simpson Meta-Learning HRL Lecture Plotly 2", use_column_width=True)

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -293,6 +293,9 @@ df = pd.read_csv('goal_rows.csv')
293
  st.write('Goal Rows DataFrame:')
294
  st.dataframe(df)
295
 
 
 
 
296
  # Aggregate the data to count the number of visits to each State_2D
297
  visitation_counts = df['State_2D'].value_counts().reset_index()
298
  visitation_counts.columns = ['State_2D', 'Visitation_Count']
@@ -492,3 +495,7 @@ st.plotly_chart(fig1)
492
  st.plotly_chart(fig2)
493
  st.plotly_chart(fig3)
494
  st.plotly_chart(fig4)
 
 
 
 
 
293
  st.write('Goal Rows DataFrame:')
294
  st.dataframe(df)
295
 
296
+ # Display the image with a caption
297
+ st.image("homer_plotly_visualizations_1.webp", caption="Homer Simpson Meta-Learning HRL Lecture Plotly 1", use_column_width=True)
298
+
299
  # Aggregate the data to count the number of visits to each State_2D
300
  visitation_counts = df['State_2D'].value_counts().reset_index()
301
  visitation_counts.columns = ['State_2D', 'Visitation_Count']
 
495
  st.plotly_chart(fig2)
496
  st.plotly_chart(fig3)
497
  st.plotly_chart(fig4)
498
+
499
+ # Display the image with a caption
500
+ st.image("homer_plotly_visualizations_2.webp", caption="Homer Simpson Meta-Learning HRL Lecture Plotly 2", use_column_width=True)
501
+