Sathwikchowdary commited on
Commit
c42a771
·
verified ·
1 Parent(s): 69199fc

Update pages/Data_Collection.py

Browse files
Files changed (1) hide show
  1. pages/Data_Collection.py +25 -2
pages/Data_Collection.py CHANGED
@@ -33,6 +33,29 @@ st.markdown(
33
  "</p>",
34
  unsafe_allow_html=True
35
  )
36
- st.markdown("The data divided into two types known as")
37
  st.markdown("1.Structured data")
38
- st.markdown("2.Unstructured data")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  "</p>",
34
  unsafe_allow_html=True
35
  )
36
+ st.markdown("Data can come in various forms, including text, numbers, images, videos, or signals, and is usually categorized into three main types:")
37
  st.markdown("1.Structured data")
38
+ st.markdown("2.Unstructured data")
39
+ st.markdown("3.Semi Structured data")
40
+ st.markdown(custom_css, unsafe_allow_html=True)
41
+ st.markdown("<h3 style='text-align: left; color: Black;'>📊Structured data </h3>", unsafe_allow_html=True)
42
+ st.markdown(
43
+ "<p style='font-size: 16px; color: White; font-style: italic;'>"
44
+ "Organized in a predefined format, typically in rows and columns (e.g., spreadsheets, relational databases)."
45
+ "</p>",
46
+ unsafe_allow_html=True
47
+ )
48
+ st.markdown("<h3 style='text-align: left; color: Black;'>Unstructured data </h3>", unsafe_allow_html=True)
49
+ st.markdown(
50
+ "<p style='font-size: 16px; color: White; font-style: italic;'>"
51
+ "Does not follow a predefined structure, such as text documents, images, and videos."
52
+ "</p>",
53
+ unsafe_allow_html=True
54
+ )
55
+ st.markdown("<h3 style='text-align: left; color: Black;'>Semi-Structured data </h3>", unsafe_allow_html=True)
56
+ st.markdown(
57
+ "<p style='font-size: 16px; color: White; font-style: italic;'>"
58
+ "Has elements of both structured and unstructured data, like JSON or XML files."
59
+ "</p>",
60
+ unsafe_allow_html=True
61
+ )