• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D17-Oct-2021468 1812

advanced_statistics.pyH A D17-Oct-20211.1 KiB3930

plot_histogram.pyH A D17-Oct-20211.4 KiB5441

plot_parametrized.pyH A D17-Oct-20213 KiB11087

plot_whisker.pyH A D17-Oct-20211.5 KiB5240

welch_ttest.pyH A D17-Oct-20211,018 3928

README.md

1This folder contains scripts that can be used in combination with hyperfines `--export-json` option.
2
3### Example:
4
5``` bash
6> hyperfine 'sleep 0.020' 'sleep 0.021' 'sleep 0.022' --export-json sleep.json
7> python plot_whisker.py sleep.json
8```
9
10### Pre-requisites
11
12To make these scripts work, you will need to install `numpy` and `matplotlib`. Install them via
13your package manager or `pip`:
14
15```bash
16pip install numpy matplotlib  # pip3, if you are using python3
17```
18