|
1 | | -# statistic-test |
| 1 | +# statistic-test |
2 | 2 |
|
3 | 3 | [](https://github.com/PySATL/pysatl-experiment/actions) |
4 | 4 | [](https://coveralls.io/github/PySATL/pysatl-experiment?branch=main) |
@@ -116,3 +116,55 @@ Starting manually: |
116 | 116 | ```shell |
117 | 117 | poetry run pre-commit run --all-files --color always --verbose --show-diff-on-failure |
118 | 118 | ``` |
| 119 | + |
| 120 | +### Quick Start example |
| 121 | + |
| 122 | +1. Creating of experiment. |
| 123 | + |
| 124 | +```shell |
| 125 | +poetry run experiment create NAME |
| 126 | +``` |
| 127 | + |
| 128 | +2. Set the experiment type value. Experiment types: critical_value, power, time_complexity. |
| 129 | + |
| 130 | +```shell |
| 131 | +poetry run experiment configure NAME experiment-type critical_value |
| 132 | +``` |
| 133 | + |
| 134 | +3. Setting the hypothesis value. Experiment types: normal, exponential, weibull. |
| 135 | + |
| 136 | +```shell |
| 137 | +poetry run experiment configure NAME hypothesis normal |
| 138 | +``` |
| 139 | + |
| 140 | +4. Set the sample size value. (min = 10) |
| 141 | + |
| 142 | +```shell |
| 143 | +run experiment configure NAME sample-sizes 23 |
| 144 | +``` |
| 145 | + |
| 146 | +5. Setting the value of the Monte Carlo number. (min = 100) |
| 147 | + |
| 148 | +```shell |
| 149 | +poetry run experiment configure NAME monte-carlo-count 154 |
| 150 | +``` |
| 151 | + |
| 152 | +6. Setting the significance levels. |
| 153 | + |
| 154 | +```shell |
| 155 | +poetry run experiment configure NAME significance-levels 0.05 0.01 |
| 156 | +``` |
| 157 | + |
| 158 | +7. Setting the file name for connecting the storage. |
| 159 | + |
| 160 | +```shell |
| 161 | +experiment configure NAME storage-connection FILENAME |
| 162 | +``` |
| 163 | + |
| 164 | +8. Running the experiment. |
| 165 | + |
| 166 | +```shell |
| 167 | +poetry run experiment build-and-run NAME |
| 168 | +``` |
| 169 | + |
| 170 | +Parameters experiment-type, hypothesis, sample-sizes, monte-carlo-count, significance-levels, storage-connection required to set values. |
0 commit comments