this repo has no description
1# Analysis
2
3This folder contains our raw data from testing Candelabra, and the notebook we used to create visualisations used in the thesis.
4
5To run the notebook, start a [livebook](https://livebook.dev) server with `livebook server`, and open `vis.livemd` using it.
6
7## Using new data
8
9To use new data, first generate some new data locally. In `../src/`:
10
11```
12$ just cost-models # approx 10m
13$ just selections --compare 2>&1 | tee ../analysis/current/log # approx 1hr 30m
14```
15
16We need to also write the log output when comparing since we use this during analysis. To put this data in the right place, in `../analysis`:
17
18```
19$ just split-log
20$ just fetch-cost-models
21$ just fetch-comparisons
22```