Batsim output `schedule.csv` ([see documentation](https://batsim.readthedocs.io/en/latest/output-schedule.html)) provides us with some scheduling metrics.
For example, we can read the mean and max **waiting time**, which is the time that elapsed between the submission of the job and the beginning of its execution.
Unfortunately, Batsim do not compute the **lateness** for us.
We will have to calculate this information form the `jobs.csv`.
Create a script that computes the mean and max lateness from a `jobs.csv` given as input.
You can use any programming language that you like, for example python with the library [pandas](https://pandas.pydata.org/docs/index.html).
Ask for help from your lab's teacher if you don't know where to start.
Fill in the file [expe/metrics.txt](./expe/metrics.txt) for your two schedulers, and upload it on Moodle.
Do you find the same results as when you did it in class?
Which algorithm is better in terms of waiting time on this input?