The Calculus project focuses on processing and analyzing raw data from mid-term and final exams.
Experience the functionality of this project in action! Visit our live demo at Lavaskiller's Calculus Demo. Explore the features and see how it works in real-time.
sum_data/
grade.txt
: Raw mid-term exam scores. Requires header addition.grade2.txt
: Raw final exam scores. Requires header addition.final.txt
: The combined score file created by sum.py. Requires header addition.sum.py
: Script to merge mid-term and final exam scores intofinal.txt
.
calc.py
: Calculates information from the dataset for web display.sayings.txt
: Stores messages for web display.grade.txt
: Raw mid-term exam scores. Includes headers.grade2.txt
: Raw final exam scores. Includes headers.final.txt
: Combined scores from mid-term and final exams. Includes headers.flask_app.py
: Show results by web page.
- Ensure
grade.txt
andgrade2.txt
insum_data/
. - Run
sum.py
to createfinal.txt
with combined scores. - Add header to
grade.txt
,grade2.txt
,final.txt
insum_data/
and save it local/
. - Use
calc.py
for further data processing and web display preparation. - Edit
sayings.txt
to change or add web display messages. - run
flask_app.py
to make webpages local on your notebook. For this you need to uncomment 102-103 offlask_app.py
.
This project is licensed under the MIT License.