DOMMETI commited on
Commit
e0044bf
·
verified ·
1 Parent(s): 347641a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -1
app.py CHANGED
@@ -11,4 +11,21 @@ sources of information. Some of the best examples of data are given below. \n *
11
  \n * VIDEO is one of the best source of data. \n * AUDIO is one of the best source of data.
12
  """)
13
  st.header("DATA is classified into 3-types.")
14
- st.subheader("Structured Data", divider=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  \n * VIDEO is one of the best source of data. \n * AUDIO is one of the best source of data.
12
  """)
13
  st.header("DATA is classified into 3-types.")
14
+ st.subheader("Structured Data", divider=True)
15
+ st.subheader("Unstructured Data", divider=True)
16
+ st.subheader("Semi Structured Data", divider=True)
17
+ st.subheader("**Structured Data**")
18
+ st.markdown("""This type of data will be having a effective or well organized
19
+ format.\nThis type of data is aligned in terms of row’s and column’s. Some of the best example’s of
20
+ structured data are given below.\n * EXCEL DOCUMENT \n * STRUCTURED QUERY LANGUAGE DATABASE
21
+ """)
22
+ st.subheader("**Unstructured Data**")
23
+ st.markdown("""This type of data will not be having any effective or well
24
+ organized format. This type of data doesn’t have any row’s and column’s. Some of the best
25
+ example’s of unstructured data are given below.\n * IMAGE\n * VIDEO\n * TEXT\n *Social Media Feeds
26
+ """)
27
+ st.subheader("**Semi Structured Data**")
28
+ st.markdown("""This type of data can be called as combination of
29
+ structured data as well as unstructured data. Some of the best examples of semi structured
30
+ data are given below.\n * COMMA SEPERATED VARIABLE\n *JSON FILES\n * E-MAILS\n * HTML
31
+ """)