Spaces:
Sleeping
Sleeping
Update pages/Intro_DS.py
Browse files- 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
st.markdown(
|
6 |
-
"<p style='font-size: 16px; color:Blue; font-style: italic'>"
|
7 |
-
"Data
|
8 |
-
"Data
|
9 |
-
"
|
|
|
|
|
|
|
|
|
10 |
unsafe_allow_html=True
|
11 |
)
|
12 |
-
st.markdown("<h2 style='text-align: center; color: ;'>
|
13 |
st.markdown(
|
14 |
-
"<p style='font-size: 16px; color:Blue; font-style: italic'>"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"Data
|
19 |
-
"
|
20 |
-
"
|
21 |
-
|
22 |
-
|
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 |
-
"
|
27 |
-
"
|
28 |
-
|
29 |
-
|
30 |
-
|
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 |
+
|
|
|
|
|
|
|
|
|
|