awacke1 commited on
Commit
a4027bb
β€’
1 Parent(s): ff78798

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -52,9 +52,9 @@ def display_table():
52
 
53
  df=pd.DataFrame(data, columns=['Question', 'Emoji', 'Title', 'Description'])
54
 
55
- #st.table(df) # simplest dataframe view
56
 
57
- edited_df = st.data_editor(df) # robust df editor
58
  #favorite_command = edited_df.loc[edited_df["rating"].idxmax()]["command"]
59
  #st.markdown(f"Your favorite command is **{favorite_command}** 🎈")
60
 
 
52
 
53
  df=pd.DataFrame(data, columns=['Question', 'Emoji', 'Title', 'Description'])
54
 
55
+ st.table(df) # simplest dataframe view
56
 
57
+ #edited_df = st.data_editor(df) # robust df editor
58
  #favorite_command = edited_df.loc[edited_df["rating"].idxmax()]["command"]
59
  #st.markdown(f"Your favorite command is **{favorite_command}** 🎈")
60