Sathwikchowdary commited on
Commit
4d3167d
·
verified ·
1 Parent(s): f6b8b38

Update pages/Data_Collection.py

Browse files
Files changed (1) hide show
  1. pages/Data_Collection.py +29 -12
pages/Data_Collection.py CHANGED
@@ -1,7 +1,7 @@
1
  import streamlit as st
2
  import pandas as pd
3
  import numpy as np
4
- import streamlit as st
5
  custom_css = """
6
  <style>
7
  html, body, [data-testid="stAppViewContainer"] {
@@ -24,8 +24,10 @@ custom_css = """
24
  }
25
  </style>
26
  """
 
27
  # Inject the CSS into the app
28
  st.markdown(custom_css, unsafe_allow_html=True)
 
29
  st.markdown("<h2 style='text-align: center; color: Black;'>📊🔍What is Data </h2>", unsafe_allow_html=True)
30
  st.markdown(
31
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
@@ -34,10 +36,10 @@ st.markdown(
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;'>"
@@ -45,23 +47,38 @@ st.markdown(
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
- if st.button("Unstructured data"):
50
- st.switch_page("pages/Data_Collection.py")
51
- display_lifecycle_stage(
52
- "Data Collection",
53
- "Gathering the data required for the machine learning project."
54
- )
55
  st.markdown(
56
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
57
  "Does not follow a predefined structure, such as text documents, images, and videos."
58
  "</p>",
59
  unsafe_allow_html=True
60
  )
 
61
  st.markdown("<h3 style='text-align: left; color: Black;'>🗂️Semi-Structured data </h3>", unsafe_allow_html=True)
62
  st.markdown(
63
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
64
  "Has elements of both structured and unstructured data, like JSON or XML files."
65
  "</p>",
66
  unsafe_allow_html=True
67
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
  import pandas as pd
3
  import numpy as np
4
+
5
  custom_css = """
6
  <style>
7
  html, body, [data-testid="stAppViewContainer"] {
 
24
  }
25
  </style>
26
  """
27
+
28
  # Inject the CSS into the app
29
  st.markdown(custom_css, unsafe_allow_html=True)
30
+
31
  st.markdown("<h2 style='text-align: center; color: Black;'>📊🔍What is Data </h2>", unsafe_allow_html=True)
32
  st.markdown(
33
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
 
36
  unsafe_allow_html=True
37
  )
38
  st.markdown("Data can come in various forms, including text, numbers, images, videos, or signals, and is usually categorized into three main types:")
39
+ st.markdown("1. Structured data")
40
+ st.markdown("2. Unstructured data")
41
+ st.markdown("3. Semi-Structured data")
42
+
43
  st.markdown("<h3 style='text-align: left; color: Black;'>📊Structured data </h3>", unsafe_allow_html=True)
44
  st.markdown(
45
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
 
47
  "</p>",
48
  unsafe_allow_html=True
49
  )
50
+
51
  st.markdown("<h3 style='text-align: left; color: Black;'>🖼️Unstructured data </h3>", unsafe_allow_html=True)
 
 
 
 
 
 
52
  st.markdown(
53
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
54
  "Does not follow a predefined structure, such as text documents, images, and videos."
55
  "</p>",
56
  unsafe_allow_html=True
57
  )
58
+
59
  st.markdown("<h3 style='text-align: left; color: Black;'>🗂️Semi-Structured data </h3>", unsafe_allow_html=True)
60
  st.markdown(
61
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
62
  "Has elements of both structured and unstructured data, like JSON or XML files."
63
  "</p>",
64
  unsafe_allow_html=True
65
+ )
66
+
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: 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>",
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: 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>",
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: White;'>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
+ )