Spaces:
Sleeping
Sleeping
Update pages/Data_Collection.py
Browse files- pages/Data_Collection.py +3 -3
pages/Data_Collection.py
CHANGED
@@ -67,18 +67,18 @@ st.markdown(
|
|
67 |
# Add buttons for each data type
|
68 |
if st.button("Learn More About Structured Data"):
|
69 |
st.markdown(
|
70 |
-
"<p style='font-size: 16px; color:
|
71 |
unsafe_allow_html=True
|
72 |
)
|
73 |
|
74 |
if st.button("Learn More About Unstructured Data"):
|
75 |
st.markdown(
|
76 |
-
"<p style='font-size: 16px; color:
|
77 |
unsafe_allow_html=True
|
78 |
)
|
79 |
|
80 |
if st.button("Learn More About Semi-Structured Data"):
|
81 |
st.markdown(
|
82 |
-
"<p style='font-size: 16px; color:
|
83 |
unsafe_allow_html=True
|
84 |
)
|
|
|
67 |
# Add buttons for each data type
|
68 |
if st.button("Learn More About Structured Data"):
|
69 |
st.markdown(
|
70 |
+
"<p style='font-size: 16px; color: Black;'>Structured data is stored in a well-defined schema, such as tables or databases. Common examples include Excel files, CSV files, and SQL databases.</p>",
|
71 |
unsafe_allow_html=True
|
72 |
)
|
73 |
|
74 |
if st.button("Learn More About Unstructured Data"):
|
75 |
st.markdown(
|
76 |
+
"<p style='font-size: 16px; color: Black;'>Unstructured data includes multimedia files, text documents, and other formats that lack a predefined schema. Examples are images, videos, and free-text files.</p>",
|
77 |
unsafe_allow_html=True
|
78 |
)
|
79 |
|
80 |
if st.button("Learn More About Semi-Structured Data"):
|
81 |
st.markdown(
|
82 |
+
"<p style='font-size: 16px; color: Black;'>Semi-structured data lies between structured and unstructured data. Formats like JSON, XML, and YAML are common examples of semi-structured data.</p>",
|
83 |
unsafe_allow_html=True
|
84 |
)
|