AMKhakbaz commited on
Commit
f56630e
·
verified ·
1 Parent(s): eb48c7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -422,6 +422,11 @@ with main_col:
422
  with col2:
423
  st.title("Chortke")
424
 
 
 
 
 
 
425
  # Main options
426
  main_option = st.selectbox("Please select an option:", ["Tabulation", "Funnel", "Hypothesis test", "Machine Learning", "Coding"])
427
 
@@ -432,7 +437,9 @@ if main_option == "Tabulation":
432
  try:
433
  df = pd.read_excel(uploaded_file)
434
  st.subheader("Displaying the first few rows of the DataFrame")
435
- st.dataframe(df.head())
 
 
436
 
437
  tabulation_option = st.selectbox("Please select the type of analysis:", ["Univariate", "Multivariate", "All"])
438
 
 
422
  with col2:
423
  st.title("Chortke")
424
 
425
+ import streamlit as st
426
+
427
+ st.markdown('[Click to register a suggestion or comment](https://docs.google.com/forms/d/e/1FAIpQLScLyP7bBbqMfGdspjL7Ij64UZ6v2KjqjKNbm8gwEsgWsFs_Qg/viewform?usp=header)')
428
+
429
+
430
  # Main options
431
  main_option = st.selectbox("Please select an option:", ["Tabulation", "Funnel", "Hypothesis test", "Machine Learning", "Coding"])
432
 
 
437
  try:
438
  df = pd.read_excel(uploaded_file)
439
  st.subheader("Displaying the first few rows of the DataFrame")
440
+ #st.dataframe(df.head())
441
+
442
+ df = st.experimental_data_editor(df)
443
 
444
  tabulation_option = st.selectbox("Please select the type of analysis:", ["Univariate", "Multivariate", "All"])
445