Sathwikchowdary commited on
Commit
776f6b3
·
verified ·
1 Parent(s): 1c4555a

Update pages/Intro_DS.py

Browse files
Files changed (1) hide show
  1. pages/Intro_DS.py +34 -27
pages/Intro_DS.py CHANGED
@@ -1,35 +1,42 @@
1
  import streamlit as st
2
  import pandas as pd
3
  import numpy as np
4
- st.markdown("<h2 style='text-align: center; color: ;'>What is Data Science</h2>", unsafe_allow_html=True)
 
 
 
 
 
 
 
 
 
5
  st.markdown(
6
- "<p style='font-size: 16px; color:Blue; font-style: italic'>"
7
- "Data Science is the practice of using data to acquire insights, solve issues, and make choices. It uses math, statistics, programming, and domain expertise to analyse data and extract meaningful information."
8
- "Data science is a multidisciplinary subject concerned with collecting knowledge and insights from organised and unstructured data utilising scientific techniques, procedures, algorithms, and systems. Here's a more detailed look at the major components of data science."
9
- "</p>",
 
 
 
 
10
  unsafe_allow_html=True
11
  )
12
- st.markdown("<h2 style='text-align: center; color: ;'>Key Ascepts of Data Science</h2>", unsafe_allow_html=True)
13
  st.markdown(
14
- "<p style='font-size: 16px; color:Blue; font-style: italic'>"
15
- "Data Collection: Collecting information from various sources such as databases, sensors, web scraping, and APIs."
16
- "Data cleaning is the process of preparing raw data by eliminating mistakes, filling in missing numbers, or addressing formatting problems."
17
- "Data analysis involves using statistical and exploratory tools to uncover patterns and trends in data."
18
- "Data modelling entails creating predictive or descriptive models using machine learning methods."
19
- "Data Visualisation: Using charts, graphs, and dashboards to show data and conclusions in an understandable format."
20
- "Decision Making: Applying insights to address corporate problems, improve procedures, or create new products."
21
- "</p>",
22
- unsafe_allow_html=True)
23
- st.markdown("<h2 style='text-align: center; color: ;'>Skills required for DS</h2>", unsafe_allow_html=True)
24
  st.markdown(
25
- "<p style='font-size: 16px; color:Blue; font-style: italic'>"
26
- "Skills required include Python, R, SQL, and other programming languages.Mathematics and statistics skills include probability, linear algebra, and hypothesis testing."
27
- "Machine Learning includes both supervised and unsupervised learning techniques such as regression, classification, and clustering.Data wrangling and ETL include extracting, manipulating, and loading data for analysis."
28
- "Visualisation tools include Tableau, Power BI, Matplotlib, and Seaborn."
29
- "</p>",
30
- unsafe_allow_html=True)
31
- st.markdown("<p style='font-size: 16px; color:Blue; font-style: italic'>"
32
- Data Science may be applied in a variety of areas or businesses, including business, healthcare, finance, retail, and social media.
33
- "</p>",
34
- unsafe_allow_html=True)
35
-
 
1
  import streamlit as st
2
  import pandas as pd
3
  import numpy as np
4
+ import streamlit as st
5
+ st.markdown("<h2 style='text-align: center; color: Blue;'>What is Data Science</h2>", unsafe_allow_html=True)
6
+ st.markdown(
7
+ "<p style='font-size: 16px; color: Blue; font-style: italic;'>"
8
+ "Data Science is the practice of using data to acquire insights, solve issues, and make decisions. It combines math, statistics, programming, and domain expertise to analyze data and extract meaningful information. "
9
+ "It is a multidisciplinary field concerned with collecting knowledge and insights from structured and unstructured data using scientific methods, procedures, algorithms, and systems. Here's a detailed look at the key components of data science."
10
+ "</p>",
11
+ unsafe_allow_html=True
12
+ )
13
+ st.markdown("<h2 style='text-align: center; color: Blue;'>Key Aspects of Data Science</h2>", unsafe_allow_html=True)
14
  st.markdown(
15
+ "<p style='font-size: 16px; color: Blue; font-style: italic;'>"
16
+ "<b>Data Collection:</b> Gathering information from various sources such as databases, sensors, web scraping, and APIs.<br>"
17
+ "<b>Data Cleaning:</b> Preparing raw data by correcting errors, filling in missing values, and addressing formatting issues.<br>"
18
+ "<b>Data Analysis:</b> Using statistical and exploratory tools to uncover patterns and trends in data.<br>"
19
+ "<b>Data Modeling:</b> Creating predictive or descriptive models using machine learning techniques.<br>"
20
+ "<b>Data Visualization:</b> Presenting data and insights using charts, graphs, and dashboards in an easy-to-understand format.<br>"
21
+ "<b>Decision Making:</b> Leveraging insights to solve business problems, optimize processes, or develop new products."
22
+ "</p>",
23
  unsafe_allow_html=True
24
  )
25
+ st.markdown("<h2 style='text-align: center; color: Blue;'>Skills Required for Data Science</h2>", unsafe_allow_html=True)
26
  st.markdown(
27
+ "<p style='font-size: 16px; color: Blue; font-style: italic;'>"
28
+ "<b>Programming Skills:</b> Proficiency in Python, R, SQL, and other programming languages.<br>"
29
+ "<b>Mathematics and Statistics:</b> Knowledge of probability, linear algebra, and hypothesis testing.<br>"
30
+ "<b>Machine Learning:</b> Expertise in supervised and unsupervised learning techniques, including regression, classification, and clustering.<br>"
31
+ "<b>Data Wrangling and ETL:</b> Skills in extracting, manipulating, and loading data for analysis.<br>"
32
+ "<b>Visualization Tools:</b> Proficiency in tools like Tableau, Power BI, Matplotlib, and Seaborn."
33
+ "</p>",
34
+ unsafe_allow_html=True
35
+ )
 
36
  st.markdown(
37
+ "<p style='font-size: 16px; color: Blue; font-style: italic;'>"
38
+ "Data Science can be applied across various industries, including business, healthcare, finance, retail, and social media."
39
+ "</p>",
40
+ unsafe_allow_html=True
41
+ )
42
+