Spaces:
Sleeping
Sleeping
Update pages/Intro_DS.py
Browse files- pages/Intro_DS.py +11 -0
pages/Intro_DS.py
CHANGED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
)
|