Spaces:
Sleeping
Sleeping
Update pages/introduction.py
Browse files- pages/introduction.py +6 -7
pages/introduction.py
CHANGED
@@ -1,12 +1,5 @@
|
|
1 |
import streamlit as st
|
2 |
st.markdown("""<h2 style="text-align: center; display: inline; text-decoration: underline;">INTRODUCTION TO DATASCIENCE</h2>""",unsafe_allow_html=True)
|
3 |
-
|
4 |
-
st.markdown("""<p style="font-family: 'Arial', sans-serif; font-size: 16px; color: blue;">Data science is a multidisciplinary field that combines statistics, programming, and domain expertise to extract meaningful insights from data. It involves collecting, cleaning, and analyzing vast amounts of structured and unstructured data to uncover patterns, trends, and valuable information.</p>""",unsafe_allow_html=True)
|
5 |
-
st.markdown("""<p1 style="font-family: 'Arial', sans-serif; font-size: 16px; color: blue;">With the rise of digital technology, data is being generated at an unprecedented rate, and data science helps organizations make sense of it. By leveraging tools like Python, R, and machine learning algorithms, data scientists solve real-world problems in areas like healthcare, finance, marketing, and more.</p1>""",unsafe_allow_html=True)
|
6 |
-
st.markdown("""<p2 style="font-family: 'Arial', sans-serif; font-size: 16px; color: blue;">For example, in e-commerce, data science is used to personalize customer recommendations, while in healthcare, it assists in disease prediction. Critical thinking and curiosity are essential for a data scientist to derive actionable insights from complex datasets. As businesses increasingly rely on data-driven decisions, data science has become one of the most sought-after and impactful career paths.</p2>""",unsafe_allow_html=True)
|
7 |
-
import base64
|
8 |
-
|
9 |
-
# Convert the local image to a Base64 string
|
10 |
def get_base64_image(img_path):
|
11 |
with open(img_path, "rb") as f:
|
12 |
data = f.read()
|
@@ -23,3 +16,9 @@ html_code = f"""
|
|
23 |
"""
|
24 |
st.markdown(html_code, unsafe_allow_html=True)
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
st.markdown("""<h2 style="text-align: center; display: inline; text-decoration: underline;">INTRODUCTION TO DATASCIENCE</h2>""",unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
def get_base64_image(img_path):
|
4 |
with open(img_path, "rb") as f:
|
5 |
data = f.read()
|
|
|
16 |
"""
|
17 |
st.markdown(html_code, unsafe_allow_html=True)
|
18 |
|
19 |
+
st.markdown("""<p style="font-family: 'Arial', sans-serif; font-size: 16px; color: blue;">Data science is a multidisciplinary field that combines statistics, programming, and domain expertise to extract meaningful insights from data. It involves collecting, cleaning, and analyzing vast amounts of structured and unstructured data to uncover patterns, trends, and valuable information.</p>""",unsafe_allow_html=True)
|
20 |
+
st.markdown("""<p1 style="font-family: 'Arial', sans-serif; font-size: 16px; color: blue;">With the rise of digital technology, data is being generated at an unprecedented rate, and data science helps organizations make sense of it. By leveraging tools like Python, R, and machine learning algorithms, data scientists solve real-world problems in areas like healthcare, finance, marketing, and more.</p1>""",unsafe_allow_html=True)
|
21 |
+
st.markdown("""<p2 style="font-family: 'Arial', sans-serif; font-size: 16px; color: blue;">For example, in e-commerce, data science is used to personalize customer recommendations, while in healthcare, it assists in disease prediction. Critical thinking and curiosity are essential for a data scientist to derive actionable insights from complex datasets. As businesses increasingly rely on data-driven decisions, data science has become one of the most sought-after and impactful career paths.</p2>""",unsafe_allow_html=True)
|
22 |
+
import base64
|
23 |
+
|
24 |
+
|