Update pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
Browse files
pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
CHANGED
@@ -33,7 +33,7 @@ def home_page():
|
|
33 |
if st.button(":blue[🛠️ Simple EDA]"):
|
34 |
st.markdown("### Simple EDA\nPerform exploratory data analysis to understand data distributions and relationships.")
|
35 |
|
36 |
-
if st.button(":blue[Data Pre-Processing]"):
|
37 |
st.markdown("### Data Pre-Processing\nConvert raw data into cleaned data.")
|
38 |
|
39 |
if st.button(":blue[📈 Exploratory Data Analysis (EDA)]"):
|
@@ -92,7 +92,6 @@ def structured_data_page():
|
|
92 |
if st.button("Back to Data Collection"):
|
93 |
st.session_state.page = "data_collection"
|
94 |
|
95 |
-
|
96 |
# ----------------- Excel Data Page -----------------
|
97 |
def excel_page():
|
98 |
st.title(":green[Excel Data Format]")
|
@@ -171,18 +170,13 @@ except UnicodeDecodeError:
|
|
171 |
print("Error: Encoding issue. Try specifying a different encoding like 'latin1' or 'utf-8'.")
|
172 |
""", language='python')
|
173 |
|
174 |
-
st.markdown(
|
175 |
-
st.write("""
|
176 |
-
- Always verify the delimiter used (e.g., commas, semicolons).
|
177 |
-
- Check for encoding compatibility, especially when dealing with international characters.
|
178 |
-
- Handle missing data effectively using functions like `fillna()` or `dropna()`.
|
179 |
-
""")
|
180 |
-
|
181 |
-
st.markdown('[Jupyter Notebook](https://colab.research.google.com/drive/1ZTKWTknL-4IQ9QbAfcyKzIP-_lNxmz2P?usp=sharing)', unsafe_allow_html=True)
|
182 |
|
183 |
if st.button("Back to Structured Data"):
|
184 |
st.session_state.page = "structured_data"
|
185 |
|
|
|
|
|
186 |
# ----------------- JSON Data Page -----------------
|
187 |
def json_page():
|
188 |
st.title(":green[JSON Data Format]")
|
|
|
33 |
if st.button(":blue[🛠️ Simple EDA]"):
|
34 |
st.markdown("### Simple EDA\nPerform exploratory data analysis to understand data distributions and relationships.")
|
35 |
|
36 |
+
if st.button(":blue[🧹 Data Pre-Processing]"):
|
37 |
st.markdown("### Data Pre-Processing\nConvert raw data into cleaned data.")
|
38 |
|
39 |
if st.button(":blue[📈 Exploratory Data Analysis (EDA)]"):
|
|
|
92 |
if st.button("Back to Data Collection"):
|
93 |
st.session_state.page = "data_collection"
|
94 |
|
|
|
95 |
# ----------------- Excel Data Page -----------------
|
96 |
def excel_page():
|
97 |
st.title(":green[Excel Data Format]")
|
|
|
170 |
print("Error: Encoding issue. Try specifying a different encoding like 'latin1' or 'utf-8'.")
|
171 |
""", language='python')
|
172 |
|
173 |
+
st.markdown('[Jupyter Notebook](https://colab.research.google.com/drive/1ZTKWTknL-4IQ9QbAfcyKzIP-_lNxmz2P?usp=sharing)')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
if st.button("Back to Structured Data"):
|
176 |
st.session_state.page = "structured_data"
|
177 |
|
178 |
+
|
179 |
+
|
180 |
# ----------------- JSON Data Page -----------------
|
181 |
def json_page():
|
182 |
st.title(":green[JSON Data Format]")
|