DOMMETI commited on
Commit
193e579
·
verified ·
1 Parent(s): e57166b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -1
app.py CHANGED
@@ -82,4 +82,39 @@ st.header("What is Data Analysis?")
82
  st.subheader("Data Analysis")
83
  st.markdown("""Data analysis is the process of inspecting, cleansing, transforming, and modeling data with the goal of discovering useful information, drawing conclusions, and supporting decision-making
84
  based on the problem statement.This applied on various filed like business,science,health care etc""")
85
- st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/QMUIDv2eboPvohbRe2yua.png",caption="An Example of Data Analysis",width=400)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  st.subheader("Data Analysis")
83
  st.markdown("""Data analysis is the process of inspecting, cleansing, transforming, and modeling data with the goal of discovering useful information, drawing conclusions, and supporting decision-making
84
  based on the problem statement.This applied on various filed like business,science,health care etc""")
85
+ st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/QMUIDv2eboPvohbRe2yua.png",caption="An Example of Data Analysis",width=400)
86
+ st.header("Data Classification")
87
+ st.subheader("Structured Data")
88
+ st.markdown("""
89
+ Structured data is organized and formatted, making it easy to search, analyze, and store in databases. Common examples include:
90
+ <ul class="icon-bullet">
91
+ <li>Excel Documents</li>
92
+ <li>SQL Databases</li>
93
+ </ul>
94
+ """, unsafe_allow_html=True)
95
+
96
+ st.image('https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/dSbyOXaQ6N_Kg2TLxgEyt.png', width=400)
97
+ st.subheader("Unstructured Data")
98
+ st.markdown("""
99
+ Unstructured data doesn't follow a specific format and is often difficult to organize. Examples include:
100
+ <ul class="icon-bullet">
101
+ <li>Images</li>
102
+ <li>Videos</li>
103
+ <li>Text documents</li>
104
+ <li>Social Media Feeds</li>
105
+ </ul>
106
+ """, unsafe_allow_html=True)
107
+
108
+ st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/xhaNBRanDaj8esumqo9hl.png", width=400)
109
+ st.subheader("Semi-Structured Data")
110
+ st.markdown("""
111
+ Semi-structured data contains elements of both structured and unstructured data. Examples include:
112
+ <ul class="icon-bullet">
113
+ <li>CSV Files</li>
114
+ <li>JSON Files</li>
115
+ <li>Emails</li>
116
+ <li>HTML Documents</li>
117
+ </ul>
118
+ """, unsafe_allow_html=True)
119
+
120
+ st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/Nupc6BePInRVo9gJwLfWH.png", width=400)