aboutsummaryrefslogtreecommitdiff
path: root/analysis/README.md
blob: d8831136dcfc093944f73fba22e42917a710a710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Analysis

This folder contains our raw data from testing Candelabra, and the notebook we used to create visualisations used in the thesis.

To run the notebook, start a [livebook](https://livebook.dev) server with `livebook server`, and open `vis.livemd` using it.

## Using new data

To use new data, first generate some new data locally. In `../src/`:

```
$ just cost-models # approx 10m
$ just selections --compare 2>&1 | tee ../analysis/current/log # approx 1hr 30m
```

We 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`:

```
$ just split-log
$ just fetch-cost-models
$ just fetch-comparisons
```