masters-thesis/plots/README.md

11 lines
502 B
Markdown

## Automatic creation of plots
## Cleanup of datasets
In order to save storage and to speed up processing of the datasets, all datasets that are created by the VILLASnode node-type benchmark are cleanup up prior to processing. All actual data is removed, since only the metadata is relevant for the results. Information about the number of values in a sample is contained in the filename.
Samples are removed in the Makefile with:
```bash
cut -d, -f3,4 $(file) > temp.csv && mv temp.csv $(file)
```