Spaces:
Sleeping
Sleeping
Update pages/Data_Collection.py
Browse files- pages/Data_Collection.py +15 -31
pages/Data_Collection.py
CHANGED
@@ -88,39 +88,23 @@ st.markdown(
|
|
88 |
"</p>",
|
89 |
unsafe_allow_html=True
|
90 |
)
|
|
|
|
|
|
|
91 |
|
92 |
-
|
93 |
-
if st.button("
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
st.markdown("<h3 style='text-align: left; color: Black;'>Structured Data Formats</h3>", unsafe_allow_html=True)
|
99 |
-
if st.button("Excel"):
|
100 |
-
st.markdown(
|
101 |
-
"<p style='font-size: 16px; color: White;'>Excel is a spreadsheet format used to organize data into rows and columns. It supports formulas, charts, and more.</p>",
|
102 |
-
unsafe_allow_html=True
|
103 |
)
|
104 |
-
st.switch_page("pages/excel_Files.py")
|
105 |
if st.button("CSV"):
|
106 |
-
|
107 |
-
"
|
108 |
-
unsafe_allow_html=True
|
109 |
)
|
110 |
-
if st.button("SQL
|
111 |
-
|
112 |
-
"
|
113 |
-
unsafe_allow_html=True
|
114 |
)
|
115 |
-
|
116 |
-
if st.button("Learn More About Unstructured Data"):
|
117 |
-
st.markdown(
|
118 |
-
"<p style='font-size: 16px; color: White;'>Unstructured data includes multimedia files, text documents, and other formats that lack a predefined schema. Examples are images, videos, and free-text files.</p>",
|
119 |
-
unsafe_allow_html=True
|
120 |
-
)
|
121 |
-
|
122 |
-
if st.button("Learn More About Semi-Structured Data"):
|
123 |
-
st.markdown(
|
124 |
-
"<p style='font-size: 16px; color: White;'>Semi-structured data lies between structured and unstructured data. Formats like JSON, XML, and YAML are common examples of semi-structured data.</p>",
|
125 |
-
unsafe_allow_html=True
|
126 |
-
)
|
|
|
88 |
"</p>",
|
89 |
unsafe_allow_html=True
|
90 |
)
|
91 |
+
# Buttons for each stage
|
92 |
+
st.markdown("### Select a Lifecycle Stage to Learn More:")
|
93 |
+
col1 = st.columns(2)
|
94 |
|
95 |
+
with col1:
|
96 |
+
if st.button("More info on structured data"):
|
97 |
+
if.st.button("SQL"):
|
98 |
+
st.switch_page("pages/excel_Files.py")
|
99 |
+
display_lifecycle_stage(
|
100 |
+
"Problem Statement",
|
|
|
|
|
|
|
|
|
|
|
101 |
)
|
|
|
102 |
if st.button("CSV"):
|
103 |
+
display_lifecycle_stage(
|
104 |
+
"CSV"
|
|
|
105 |
)
|
106 |
+
if st.button("SQL"):
|
107 |
+
display_lifecycle_stage(
|
108 |
+
"SQL"
|
|
|
109 |
)
|
110 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|