An educational purposes repo
This project includes a small dataset (students.csv) with 10 students and their grades, plus a script that loads the data with pandas and prints descriptive statistics.
- Create and activate a Python 3.12 virtual environment.
- Install dependencies (declared in
pyproject.toml):uv sync
Run the entry script to inspect the dataset:
python main.pyThe script prints the student table followed by summary statistics (count, mean, min, quartiles, max) for the grade column.