shwetashweta05 commited on
Commit
3b0cd25
·
verified ·
1 Parent(s): a232f82

Update pages/6.Data Collection.py

Browse files
Files changed (1) hide show
  1. pages/6.Data Collection.py +24 -0
pages/6.Data Collection.py CHANGED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.subheader("**What is Data?**")
4
+ st.write("Data refers to information, facts, or statistics that are collected, stored, and analyzed to derive meaningful insights. It represents raw, unprocessed values that can be used for decision-making, analysis, and predictions. Data is the foundation of fields like data science, machine learning, and artificial intelligence.")
5
+
6
+ st.subheader("**Characteristics of Data:**")
7
+ st.write("""
8
+ - **Raw and Unprocessed:** Data in its initial form, before being cleaned or structured.
9
+ - **Forms:** Data can exist as numbers, text, images, videos, sounds, and more.
10
+ - **Source:** Data can be collected from various sources, such as surveys, sensors, transactions, or online platforms.
11
+ """)
12
+
13
+ data_type = st.radio("Select a type of data:", ["Structured", "Unstructured", "Semi-Structured"])
14
+
15
+ # Structured Data Section
16
+ if data_type == "Structured":
17
+ st.write("### Structured Data")
18
+ st.write("Structured data is organized in a predefined format, such as rows and columns.")
19
+
20
+ # Buttons for Data Formats
21
+ format_selected = st.radio(
22
+ "Select a data format to learn more:", ["Excel", "CSV", "SQL Databases"]
23
+ )
24
+