yes2code commited on
Commit
9bf6829
·
1 Parent(s): cdda37b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -59,15 +59,15 @@ palette = [
59
 
60
  def main():
61
  file = st.sidebar.file_uploader("Upload Your CSV File Here: ")
 
62
  process = st.sidebar.button("Process")
63
  option = st.sidebar.radio(
64
- "Select an Option: ",
65
  (
66
- "Basic EDA",
67
  "Univariate Analysis",
68
  "Bivariate Analysis",
69
- "Preprocess",
70
- "Training and Evaluation",
71
  ),
72
  )
73
  placeholder = st.empty()
@@ -87,7 +87,7 @@ def main():
87
 
88
  if option == "Basic EDA":
89
  st.markdown(
90
- "<h1 style='text-align: center;'>Basic EDA</h1>", unsafe_allow_html=True
91
  )
92
 
93
  st.subheader("Data Overview")
 
59
 
60
  def main():
61
  file = st.sidebar.file_uploader("Upload Your CSV File Here: ")
62
+ Print("Step 2: Process the file")
63
  process = st.sidebar.button("Process")
64
  option = st.sidebar.radio(
65
+ "Select Data Analysis: ",
66
  (
67
+ "Exploratory Data Analysis",
68
  "Univariate Analysis",
69
  "Bivariate Analysis",
70
+
 
71
  ),
72
  )
73
  placeholder = st.empty()
 
87
 
88
  if option == "Basic EDA":
89
  st.markdown(
90
+ "<h1 style='text-align: center;'>Exploratory Data Analysis</h1>", unsafe_allow_html=True
91
  )
92
 
93
  st.subheader("Data Overview")