| import streamlit as st |
| import pandas as pd |
| import numpy as np |
|
|
| st.header("Introduction to Statistics") |
| st.write("Statistics is the science of collecting, organizing, analyzing, interpreting, and presenting data. It's a powerful tool used to make sense of the world around us, from understanding trends in the economy to predicting the outcome of elections.") |
| st.subheader("Key Concepts in Statistics") |
| st.markdown(""" |
| * **Data:** Information gathered from observations or experiments. |
| * **Population:** The entire group of individuals or objects being studied. |
| * **Sample:** A subset of the population used to represent the whole. |
| * **Variable:** A characteristic or property that can take on different values for different individuals or objects.""") |
| st.subheader("Applications of Statistics") |
|
|
| st.markdown(""" |
| Statistics is used in a wide variety of fields, including: |
| * **Business:** Market research, financial analysis, quality control |
| * **Science:** Research design, data analysis, hypothesis testing |
| * **Government:** Policy development, economic forecasting, public opinion polls |
| * **Healthcare:** Clinical trials, epidemiology, health outcomes research |
| * **Education:** Educational research, student assessment, program evaluation |
| In essence, statistics provides the tools to turn raw data into meanin""") |