Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
65 |
(
|
66 |
-
"
|
67 |
"Univariate Analysis",
|
68 |
"Bivariate Analysis",
|
69 |
-
|
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;'>
|
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")
|