eagle0504 commited on
Commit
3db05f5
1 Parent(s): 2f2b15c

integer added

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -59,7 +59,9 @@ with st.sidebar:
59
  )
60
 
61
  # Input filter
62
- top_n = st.number_input("Insert a number (top n rows to be selected):")
 
 
63
 
64
  # Use dictionary
65
  use_dict_format = st.checkbox("Use dictionary format.")
 
59
  )
60
 
61
  # Input filter
62
+ top_n = st.number_input(
63
+ "Insert a number (top n rows to be selected):", value=5, step=1
64
+ )
65
 
66
  # Use dictionary
67
  use_dict_format = st.checkbox("Use dictionary format.")