ankithpatel commited on
Commit
8ab2e8c
·
verified ·
1 Parent(s): 3c1c18f

Update pages/introduction.py

Browse files
Files changed (1) hide show
  1. pages/introduction.py +3 -2
pages/introduction.py CHANGED
@@ -1,5 +1,8 @@
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
  import base64
4
  def get_base64_image(img_path):
5
  with open(img_path, "rb") as f:
@@ -16,8 +19,6 @@ html_code = f"""
16
  </div>
17
  """
18
  st.markdown(html_code, unsafe_allow_html=True)
19
-
20
- 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)
21
  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)
22
  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)
23
 
 
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
+
5
+ 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)
6
  import base64
7
  def get_base64_image(img_path):
8
  with open(img_path, "rb") as f:
 
19
  </div>
20
  """
21
  st.markdown(html_code, unsafe_allow_html=True)
 
 
22
  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)
23
  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)
24