import streamlit as st # Aliased streamlit as 'st' for consistency
import pandas as pd
import numpy as np
# Header Section
st.markdown(
"
DATA SCIENCE INTRODUCTION
",
unsafe_allow_html=True
)
# Main Content Section
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 several types of applications, as explained 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 Data Science
Data Science involves several steps, such as:
- Understanding the Given Problem: First, you need to understand the type of problem you are addressing.
- 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: Implement the model into a production environment where it can provide actionable insights or make decisions in real-time.
""",
unsafe_allow_html=True
)