- #!/bin/bash
- # Copy here the results folder, to not clobber the main directory
- cp -r ../results .
- # Invoke all the python scripts needed to prepare and plot the data
- ./preprocess.py
- ./analyze.py
- ./plot.py
- # Copy the charts folder one level above
- cp -r charts ../
|