import streamlit
import pandas
import numpy
st.markdown("
Introduction To Data Science
", unsafe_allow_html=True)
st.markdown("CSS background
", unsafe_allow_html=True)
st.markdown(
""
# CSS for styling with the background image
custom_css = """
"""
# Apply custom CSS
st.markdown(custom_css, unsafe_allow_html=True)
# Page Title
st.markdown("
Data science
", unsafe_allow_html=True)
# Section: What is Data Science?
st.markdown("""
What is Data Science?
It combines techniques from statistics, computer science, mathematics, and domain expertise to analyze and interpret data effectively.
In essence, data science transforms raw data into actionable insights, driving smarter decisions across industries.
There are some several types of explanations which are given below :
- Analyzing customer reviews to identify product sentiment
- Techniques Used: Natural Language Processing (NLP), sentiment analysis.
- Optimizing delivery routes for logistics companies
- Techniques Used: Graph algorithms, optimization techniques
Few Important steps in DS
Data Science has several steps ,such as :
- Understanding the given problem:First thing is you need to understand the given type of problem
- Data Collection: Gather relevant data from various sources to address the defined problem.
- Data Cleaning and Preprocessing: Prepare the raw data for analysis by handling inconsistencies, missing values, and errors.
- Exploratory Data Analysis (EDA):Gain an initial understanding of the data’s main characteristics through visualization and summary statistics.
- Deployment:
""", unsafe_allow_html=True)