Spaces:
Sleeping
Sleeping
Sathwikchowdary
commited on
Update pages/Data_Collection.py
Browse files- pages/Data_Collection.py +17 -1
pages/Data_Collection.py
CHANGED
@@ -56,7 +56,7 @@ st.markdown(custom_css, unsafe_allow_html=True)
|
|
56 |
st.markdown("<h2 style='text-align: center; color: Black;'>📊🔍What is Data </h2>", unsafe_allow_html=True)
|
57 |
st.markdown(
|
58 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
59 |
-
"Raw facts, figures, or other information gathered for analysis, reference, or use in decision-making processes are called as data. It serves as the foundation for several processes in a variety of domains, such as machine learning, which uses
|
60 |
"</p>",
|
61 |
unsafe_allow_html=True
|
62 |
)
|
@@ -95,6 +95,22 @@ if st.button("Learn More About Structured Data"):
|
|
95 |
"<p style='font-size: 16px; color: White;'>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>",
|
96 |
unsafe_allow_html=True
|
97 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
|
99 |
if st.button("Learn More About Unstructured Data"):
|
100 |
st.markdown(
|
|
|
56 |
st.markdown("<h2 style='text-align: center; color: Black;'>📊🔍What is Data </h2>", unsafe_allow_html=True)
|
57 |
st.markdown(
|
58 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
59 |
+
"Raw facts, figures, or other information gathered for analysis, reference, or use in decision-making processes are called as data. It serves as the foundation for several processes in a variety of domains, such as machine learning, which uses to provide insights and train models."
|
60 |
"</p>",
|
61 |
unsafe_allow_html=True
|
62 |
)
|
|
|
95 |
"<p style='font-size: 16px; color: White;'>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>",
|
96 |
unsafe_allow_html=True
|
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 |
+
if st.button("CSV"):
|
105 |
+
st.markdown(
|
106 |
+
"<p style='font-size: 16px; color: White;'>CSV (Comma-Separated Values) is a plain text format where each row represents a record, and fields are separated by commas.</p>",
|
107 |
+
unsafe_allow_html=True
|
108 |
+
)
|
109 |
+
if st.button("SQL Database"):
|
110 |
+
st.markdown(
|
111 |
+
"<p style='font-size: 16px; color: White;'>SQL Databases store structured data in tables and allow querying using SQL (Structured Query Language).</p>",
|
112 |
+
unsafe_allow_html=True
|
113 |
+
)
|
114 |
|
115 |
if st.button("Learn More About Unstructured Data"):
|
116 |
st.markdown(
|