import streamlit as st
import pandas as pd
st.markdown("""
""", unsafe_allow_html=True)
st.title("INTRODUCTION TO STATISTICS")
st.markdown("""Statistics is a branch of mathematics focused on collecting, analyzing, interpreting, and presenting data. It can be divided into two main categories
""", unsafe_allow_html=True)
st.subheader("Descriptive Statistics")
st.markdown("""
Descriptive statistics summarize and describe the main features of a dataset. Key concepts include:
- Measures of Central Tendency (Mean, Median, Mode)
- Measures of Dispersion (Range, Variance, Standard Deviation)
- Data Distributions (e.g., Gaussian, Random, Normal)
""", unsafe_allow_html=True)
st.subheader("Inferential Statistics")
st.markdown("""
Inferential statistics involve making predictions or inferences about a population based on a sample. These methods are used to test hypotheses and estimate population parameters.
- Hypothesis Testing (t-tests,Chi-square tests,ANOVA)
- Confidence Intervals
- Regression Analysis(Simple Linear Regression,Multiple Regression,Logistic Regression)
""", unsafe_allow_html=True)
st.header("While collecting the data we tend to collect the data based on")
st.markdown("""
""",unsafe_allow_html=True)
st.subheader("Population")
st.markdown("""Population refers to the entire set of data or all possible observations relevant to a particular study or analysis.
""",unsafe_allow_html=True)
st.markdown("""Population Measure are **Parameters**
""",unsafe_allow_html=True)
st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/NqR4Aud2KosmHI4GDsCvF.png",caption="Population Data",width=400)
st.subheader("Sample")
st.markdown("""A sample is a smaller subset of a population, selected to represent the entire population in a study or analysis.
""",unsafe_allow_html=True)
st.markdown("""Sample Measure are **Statistics**
""",unsafe_allow_html=True)
st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/u73pY9APXB0kpickkqbjo.png",caption="Sample Data",width=400)